--- title: XMLHttpRequest.responseText slug: Web/API/XMLHttpRequest/responseText tags: - XMLHttpRequest.responseText translation_of: Web/API/XMLHttpRequest/responseText ---
XMLHttpRequest.responseText 在一个请求被发送后,从服务器端返回文本。
var resultText = XMLHttpRequest.responseText;
{{domxref("DOMString")}} 是XMLHttpRequest
返回的纯文本的值。当{{domxref("DOMString")}} 为null
时,表示请求失败了。当{{domxref("DOMString")}} 为""时,表示这个请求还没有被{{domxref("XMLHttpRequest.send", "send()")}}
当处理一个异步request的时候,尽管当前请求并没有结束,responseText
的返回值是当前从后端收到的内容。
当请求状态{{domxref("XMLHttpRequest.readyState", "readyState")}}变为{{domxref("XMLHttpRequest.DONE", "XMLHttpRequest.DONE")}} (4
),且{{domxref("XMLHttpRequest.status", "status")}}值为200("OK")时,responseText
是全部后端的返回数据
var xhr = new XMLHttpRequest(); xhr.open('GET', '/server', true); // If specified, responseType must be empty string or "text" xhr.responseType = 'text'; xhr.onload = function () { if (xhr.readyState === xhr.DONE) { if (xhr.status === 200) { console.log(xhr.response); console.log(xhr.responseText); } } }; xhr.send(null);
格式 | 状态 | 备注 |
---|---|---|
{{SpecName('XMLHttpRequest', '#the-responsetext-attribute')}} | {{Spec2('XMLHttpRequest')}} | WHATWG living standard |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}}[1] | {{CompatUnknown}} | {{CompatUnknown}} |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} |
[1] 在IE10前的版本请求完成时, XMLHttpRequest.responseText 的值为只读。