1
$.ajax({
type: "POST",
url: wsURL,
data: JSON.stringify(dataToExport),
success: function() {
window.location = "../../handlers/GetData.ashx";
return false;
},
dataType: "json",
contentType: "application/json; charset=utf-8"
});
它沒有工作正常。的記錄少於40000.當我試圖在Chrome開發工具中排除故障時,它似乎在上面發佈的ajax調用中失敗,我認爲它可能與JSON.stringify有關。 – user3015069