我尝试使用AJAX调用来调用我的控制器:
$.ajax({
type: "GET",
datatype: "JSONP",
url: '@Url.Action("DeleteTeam", "Team")',
cache: false,
data: {
"id": teamId,
"id2": locationName
},
success: function (html) {
// ...
}
});
它适用于我的localhost,但在服务器上不起作用。我确定本地和服务器之间没有差异代码。
我收到500内部错误。在查看错误后,我发现它已启用
xhr.send( ( options.hasContent && options.data ) || null )
。我不明白为什么它在服务器上不起作用。