我定义一个这样的格式
var testJson = [{"name":"abc","phone":1131313},{"name":"abc","phone":1232313}];
用JQUERY专到到后台
$.ajax({
type:"post",
url:"Controller",
data:{'mydata':testJson2},
dateType:"json",
success:function(){
alert(1111111111111)
}
});
后台要怎么接收并取出里面的数据呢。
--------------------------------------------------
我自已解决了,是传输格式的问题。要把变量 testJson当参数传过去。
data:“testJson=”+JSON.stringify(testJson),
JAVA后台:
String json1 = request.getParameter("testJson");
最后JSONObject类就能处理了。