spring接收对象数组实例

  • Post author:
  • Post category:其他


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) {

}



版权声明:本文为freedomwind2009原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。