ajax的error
阿新 • • 發佈:2018-10-31
details 查看 tps src bubuko 內容 com 屬性。 mod
ajax的error有XMLHttpRequest,textStatus和errorThrown三個屬性。
XMLHttpRequest.status=200 (正常響應)
XMLHttpRequest.readyState=4 (正常接收)
XMLHttpRequest.responseText=“異常內容”
textStatus一般返回null,"timeout", "error", "notmodified" 和 "parsererror五個值。
返回錯誤代碼對照表https://blog.csdn.net/qi1271199790/article/details/60465859
timeout=超時,parsererror一般比較廣泛,各種問題。註意查看書寫的格式。函數後的百分號需要註意不能忘記。
errorThrown:後期補充
ajax的error