码迷,mamicode.com
首页 > Web开发 > 详细

Struts2:前台提交JSON数组

时间:2014-08-11 14:45:12      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   cti   

JS:

$.ajax({
url : {URL},
type : "POST",
data : {
"list[0]":{VALUE0},
"list[1]":{VALUE1}
},
scriptCharSet : "UTF-8",
success : function(data) {}
});

FORM:

public class Form{
  private List list;
   public List getList(){
    return this.list;
   }
   public void setList(List list){
     this.list = list;
   }
}

 

Struts2:前台提交JSON数组,布布扣,bubuko.com

Struts2:前台提交JSON数组

标签:style   blog   color   os   io   for   ar   cti   

原文地址:http://www.cnblogs.com/pumasun/p/3904541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!