我得到「網關超時」錯誤在我的瀏覽器,同時使如下崗位Ajax請求:POST Ajax請求得到timout
$.ajax({
url: '/templatemanager/fileupload.html',
data: formData,
processData: false,
contentType: false,
type: 'POST',
success: function(data){
alert ('done');
},
error: function(jqhdr, textStatus,errorThrown){
alert (errorThrown);
}
});
The error thown message is "Gateway Time-out".
Please let me know, how to rectify this issue.
Whether, i should increase the tomcat http connector tiemout or ajax timeout?
網關超時錯誤堅持..所以請檢查服務器端腳本代碼。主要是由於第三方API集成,但API沒有按時響應,所以這個錯誤是造成的。 –
我有java代碼邏輯解析文件上傳並插入數據庫中的記錄。這是我的文件有更多的記錄,因爲我的ajax顯示錯誤的特殊情況。 – Ravish