跳到主要内容

responseText

2024年04月17日
柏拉文
越努力,越幸运

ajax.responseText 在一个请求被发送后,从服务器端返回文本。

语法

const ajax = new XMLHttpRequest();
ajax.open("get","htt://localhost:4000/api",true);
ajax.responseType = "text";
ajax.readystatechange = function(){
if(ajax.readyState === 4 && [200,304].includes(ajax.status)){
console.log(xhr.responseText);
}
};
ajax.send();