error
2024年04月17日
ajax.error
当请求遇到错误时,将触发error
事件。
语法
const ajax = new XMLHttpRequest();
ajax.open("get","htt://localhost:4000/api",true);
ajax.onerror = function(e){
console.log(e);
};
ajax.send();
ajax.error
当请求遇到错误时,将触发error
事件。
语法
const ajax = new XMLHttpRequest();
ajax.open("get","htt://localhost:4000/api",true);
ajax.onerror = function(e){
console.log(e);
};
ajax.send();