spring接收对象数组实例

来源:互联网 发布:杭州知彼 编辑:程序博客网 时间:2024/06/06 01:42

JS

var param= new Array();
var one= new Object;
one.id = '1';
one.name= 'simba1';
param.push(one);

var two= new Object;
two.id = '2';
two.name= 'simba2';
param.push(two);

$.ajax({
async : false,
cache : false,
type : 'POST',
dataType:"json",      
            contentType:'application/json;charset=UTF-8',
url : 'test.htm',
data : JSON.stringify(param),
error : function(data) {
  alert("加载数据错误,请重试!");
   },
success : function(data) {

}
});


JAVA

POJO

public class Test{

public Long Id;

public String name;

get***

set**

}



controller

@RequestMapping(value = "test.thm", method = RequestMethod.POST)
    @ResponseBody
    public Boolean editQhbPrizeChance(@RequestBody Test[] test) {

}

1 0
原创粉丝点击