Ajax提交时的两个错误
1、ajax提交时,总是报出500错误,找不到/Personnel/BatchInit指定的后台处理方法
$.ajax({
url: "/Personnel/BatchInit",
type: "get",
dataType: "text",
data: {cTaskGuids:ids},
success: function (data) {
alert(data);
location.reload(1);
},
error: function (err) {
alert("同步记录数据失败!");
}
});
之后,添加上contentType属性后,问题解决。
$.ajax({
url: "/Personnel/BatchInit",
type: "get",
contentType: "text/html",
dataType: "text",
data: {cTaskGuids:ids},
success: function (data) {
alert(data);
location.reload(1);
},
error: function (err) {
alert("同步记录数据失败!");
}
});
2、后台方法获得的参数为null
最初ajax提交时,type类型为post,但后台获得的参数都是null,改成get提交后,后台可以正常获取参数了。
$.ajax({
url: "/Personnel/BatchInit",
type: "get",
contentType: "text/html",
dataType: "text",
data: {cTaskGuids:ids},
success: function (data) {
alert(data);
location.reload(1);
},
error: function (err) {
alert("同步记录数据失败!");
}
});
相关推荐
结束数据方法的参数,该如何定义?-- 集合为自定义实体类中的结合属性,有几个实体类,改变下标就行了。<input id="add" type="button" value="新增visitor&quo