response属性
·以对象的形式表述响应体,其类型取决于responseType的值。你可以尝试设置responseType的值,以便通过特定的类型请求数据。
·responseType要在调用open()初始化请求之后,在调用send()发送请求到服务器之前设置方可生效。
<!DOCTYPE html> <html lang=“en”> <head> <meta charset=“UTF-8”> <meta name=“viewport” content=“width=device-width, initial-scale=1.0”> <title>Document</title> <script> var xhr = new XMLHttpRequest(); xhr.open(“GET”, “http://localhost:3000/posts“); xhr.responseType = “json”; xhr.onload = function () { console.log(this.response); } xhr.send(null); </script> </head> <body> </body> </html>