0
bertween xhr.response和xhr.responseText的差異而做了「GET」請求什麼是在XMLHttpRequest的
xhr.response和xhr.responseText都返回相同的字符串
bertween xhr.response和xhr.responseText的差異而做了「GET」請求什麼是在XMLHttpRequest的
xhr.response和xhr.responseText都返回相同的字符串
的response
被解釋成ArrayBuffer
,Blob
,Document
,JavaScript對象或DOMString
,具體取決於XMLHttpRequest.responseType
的值。另一方面,原始文本是responseText
,您可以根據需要處理它。儘管如此,它們在使用上非常相似。
response
。responseText
,而responseType
是您不想使用的格式。
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest:Look @ the Properties –