尝试使用 ajax 调用传递数组。
info = [];
info[0] = 'hi';
info[1] = 'hello';
$.ajax({
type: "POST",
data: {info: info, "action": "getPatientRecords"},
url: "/mobiledoc/jsp/ccmr/webPortal/carePlanning/servicePatientmilestoneModal.jsp",
success: function(msg) {
$('.answer').html(msg);
}
});
但是,当我尝试使用以下命令在服务器端捕获它时:request.getParameter("info"); //显示空**
另外,如果我想发送一个数组数组?可能吗?
我尝试使用序列化但是我的 IE 抛出了序列化的错误:对象不支持这个属性我确实包含了 jquery lib。