XMLHttpRequestResponseType - Web API 接口参考 编辑
XMLHttpRequestResponseType
类型是一个枚举字符串,用于指定包含在一个 XMLHttpRequest
中的 response
的数据类型。这些值用于获取或设置请求的 responseType
。
取值
""
responseType
为空字符串时,采用默认类型DOMString
,与设置为text
相同。arraybuffer
response
是一个包含二进制数据的 JavaScriptArrayBuffer
。blob
response
是一个包含二进制数据的Blob
对象 。document
response
是一个 HTMLDocument
或 XMLXMLDocument
,这取决于接收到的数据的 MIME 类型。请参阅 XMLHttpRequest 中的 HTML 以了解使用 XHR 获取 HTML 内容的更多信息。json
response
是一个 JavaScript 对象。这个对象是通过将接收到的数据类型视为 JSON 解析得到的。text
response
是一个以DOMString
对象表示的文本。ms-stream
response
是下载流的一部分;此响应类型仅允许下载请求,并且仅受 Internet Explorer 支持。
已废弃的值
moz-chunked-arraybuffer
与
"arraybuffer"
相似,但是数据会被接收到一个流中。使用此响应类型时,响应中的值仅在progress
事件的处理程序中可用,并且只包含上一次响应progress
事件以后收到的数据,而不是自请求发送以来收到的所有数据。在
progress
事件处理时访问response
将返回到目前为止收到的数据。在progress
事件处理程序之外访问,response
的值会始终为null
。You shouldn't use this non-standard (and, as of Firefox 68, entirely removed) API; instead, consider using the Fetch API with readable streams, which offers a standard alternative to accessing the response in a streaming fashion.
规范
规范 | 状态 | 注释 |
---|---|---|
XMLHttpRequest | Unknown | Live standard, latest version |
浏览器兼容性
此页面中的兼容性表是根据结构化数据生成的。如果你想为数据做出贡献,请查看 https://github.com/mdn/browser-compat-data 并向我们发起拉取请求。No compatibility data found. Please contribute data for "api.XMLHttpRequestResponseType" (depth: 1) to the MDN compatibility data repository.
了解更多
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论