var postArray= new Array();
var temp = new Object();
temp.id=‘1‘;
temp.name=‘test‘;
postArray.push(temp);
$.ajax({
url:"url",
type:‘post‘,
data:{data:JSON.stringify(postArray)},
success:function(data)
{
//对date做处理
}
});
把对象数组转换成json,然后后台在把json转换成对象数组
时间: 2024-10-11 12:10:17