0
在MVC4,我發送到服務器的Ajax調用保存的數據量:是否有任何方法來增加使用MVC4中的Get方法的數據限制?
$.ajax({
contentType: 'application/json; charset=utf-8',
method: 'get',
url: "Gateway/DB_Rola?count="+(n+1),
data: things[n],
success: function (Data) {
},
error: function() {
alert("ERROR: can't connect to Server this time :"+n+" "+things[n].verse);
return false;
}
});
有時提示錯誤,由於大量的數據。無論如何,使用get
請求增加數據限制?