1.ajax 中无法将json 对象传到后台,只能将json 的字符串传到后台. 如下:
var json=[{"id":"1","name":"one"},{"id":"2","name":"two"}]; 错误: $(function(){ $.post(URL,{"json":json); } ); 后台接收到的是空对像null 正确: $(function(){ $.post(URL,{"json":JSON.stringify(json)); } );
时间: 2024-11-12 15:09:40