我在MVC3应用程序中使用了一个AJX get调用。以下是电话。
$.ajax({
url: '@Url.Action("GetEmailByAdvanced", "CustomerEmails")',
type: 'GET',
data: cqvdata,
success: function (data) {
//called when successful
var emails = "";
$.each(data, function (index, contact) {
$('#BCCText').tagit('createTag', contact.Email)
});
return false;
},
error: function (e) {
//called when there is an error
alert("Error occurred");
}
});
cqvdata是序列化表格。在我的计算机上运行的开发服务器上,此调用正常,我得到了结果。当我将其部署到Windows Server 2008 R2时,它会返回错误。
答案 0 :(得分:0)
我找不到任何方法来处理错误414.在网上看来,似乎答案通常是你应该使用一个数据量很大的帖子,因此会遇到不同的问题。我做了那个改变,现在运行正常。