从XmlHttpRequest.responseJSON解析JSON


100

我正在尝试在JavaScript中解析bit.ly JSON响应。

我通过XmlHttpRequest获取JSON。

var req = new XMLHttpRequest;  
req.overrideMimeType("application/json");  
req.open('GET', BITLY_CREATE_API + encodeURIComponent(url)
          + BITLY_API_LOGIN, true);  
var target = this;  
req.onload  = function() {target.parseJSON(req, url)};  
req.send(null);

parseJSON: function(req, url) {  
if (req.status == 200) {  
    var jsonResponse = req.responseJSON;  
    var bitlyUrl = jsonResponse.results[url].shortUrl;  
}

我在Firefox插件中执行此操作。当我运行时,该行出现错误“ jsonResponse is undefined” var bitlyUrl = jsonResponse.results[url].shortUrl;。我在这里解析JSON时做错什么了吗?还是这段代码有什么问题?

Answers:


228

我的新方法: fetch

TL; DR只要您不必发送同步请求或支持旧的浏览器,我就建议采用这种方式。

只要您的请求是异步的,就可以使用Fetch API发送HTTP请求。fetch API与promises一起使用,这是在JavaScript中处理异步工作流的好方法。使用这种方法,您fetch()可以发送请求并ResponseBody.json()解析响应:

fetch(url)
  .then(function(response) {
    return response.json();
  })
  .then(function(jsonResponse) {
    // do something with jsonResponse
  });

兼容性:IE11以及Edge 12和13不支持Fetch API。但是,有polyfills

新方法二: responseType

正如Londeren其答案中所写,较新的浏览器允许您使用该responseType属性来定义期望的响应格式。然后可以通过response属性访问已解析的响应数据:

var req = new XMLHttpRequest();
req.responseType = 'json';
req.open('GET', url, true);
req.onload  = function() {
   var jsonResponse = req.response;
   // do something with jsonResponse
};
req.send(null);

兼容性:responseType = 'json'IE11不支持。

经典方式

标准XMLHttpRequest没有responseJSON属性,只有responseTextresponseXML。只要bitly确实以一些JSON响应您的请求,就responseText应该将JSON代码包含为文本,因此您要做的就是使用解析它JSON.parse()

var req = new XMLHttpRequest();
req.overrideMimeType("application/json");
req.open('GET', url, true);
req.onload  = function() {
   var jsonResponse = JSON.parse(req.responseText);
   // do something with jsonResponse
};
req.send(null);

兼容性:此方法应与支持XMLHttpRequest和的任何浏览器一起使用JSON

JSONHttpRequest

如果您喜欢使用responseJSON,但是想要一个比JQuery更轻便的解决方案,则可能需要查看我的JSONHttpRequest。它的工作原理与普通的XMLHttpRequest完全相同,但也提供了该responseJSON属性。您只需要在代码中更改第一行即可:

var req = new JSONHttpRequest();

JSONHttpRequest还提供了轻松将JavaScript对象作为JSON发送的功能。更多详细信息和代码可以在这里找到:http : //pixelsvsbytes.com/2011/12/teach-your-xmlhttprequest-some-json/

全面披露:我是Pixels | Bytes的所有者。我认为我的脚本可以很好地解决该问题,因此我将其发布在此处。如果您要我删除链接,请发表评论。


5
+1; IMO这是对这个问题的真正答案-没有jQuery只是普通的老香草XMLHttpRequest; 问题到底是什么。
Fergus在伦敦,2013年

可以s a jquery version too. If you are getting crossbrowser issue尝试一下,通常框架可以更好地解决这些问题: api.jquery.com/jquery.parsejson
sagits 2014年

1
四年后,这仍然在帮助人们。:)链接到博客是很好的IMO,因为它确实是问题的完整答案,包括示例代码和下载。谢谢!
user1094821

“使用新图书馆”并不像人们想象的那样有用。
Grunion Shaftoe

@GrunionShaftoe请您解释一下,这是什么意思?我不建议使用新的库。我推荐的解决方案fetch是标准JavaScript。
Torben

25

您可以简单地设置 xhr.responseType = 'json';

const xhr = new XMLHttpRequest();
xhr.open('GET', 'https://jsonplaceholder.typicode.com/posts/1');
xhr.responseType = 'json';
xhr.onload = function(e) {
  if (this.status == 200) {
    console.log('response', this.response); // JSON response  
  }
};
xhr.send();
  

responseType的文档


这里有一个主要警告:IE和Edge的当前版本都不支持此功能(也许Edge最终会在过渡到Chromium之后最终实现)
Machavity

3

注意:我仅在Chrome中对此进行了测试。

它将原型函数添加到XMLHttpRequest .. XHR2

XHR 1中,您可能只需要替换this.responsethis.responseText

Object.defineProperty(XMLHttpRequest.prototype,'responseJSON',{value:function(){
 return JSON.parse(this.response);
},writable:false,enumerable:false});

返回xhr2中的json

xhr.onload=function(){
 console.log(this.responseJSON());
}

编辑

如果您打算将XHR与arraybuffer或其他响应类型一起使用,则必须检查响应是否为string

无论如何,您都必须添加更多检查,例如,如果它无法解析json。

Object.defineProperty(XMLHttpRequest.prototype,'responseJSON',{value:function(){
 return (typeof this.response==='string'?JSON.parse(this.response):this.response);
},writable:false,enumerable:false});

2
如果您是我,我将定义一个吸气剂而不是一个函数属性。只需更换valueget传递给该对象Object.defineProperty,您可以使用responseJSON像对其他任何响应变量。
wizzwizz4 2016年

1

我认为您必须包括jQuery才能使用responseJSON

没有jQuery,您可以尝试使用responseText并尝试像 eval("("+req.responseText+")");

更新:请阅读有关的评论eval,您可以使用eval进行测试,但不要在工作扩展中使用它。

要么

使用json_parse:不使用eval


5
对于运行chrome privs的Firefox插件,请不要评估您从外部来源获得的任何信息。相反,请使用JSON.parse(至少在FF 3.5及更高版本中)。
本·康比09年

1

如果这用于FF扩展,请使用nsIJSON

var req = new XMLHttpRequest;
req.overrideMimeType("application/json");
req.open('GET', BITLY_CREATE_API + encodeURIComponent(url) + BITLY_API_LOGIN, true);
var target = this;
req.onload = function() {target.parseJSON(req, url)};
req.send(null);

parseJSON: function(req, url) {
if (req.status == 200) {
  var jsonResponse = Components.classes["@mozilla.org/dom/json;1"]
      .createInstance(Components.interfaces.nsIJSON.decode(req.responseText);
  var bitlyUrl = jsonResponse.results[url].shortUrl;
}

对于网页,只需使用JSON.parse代替Components.classes["@mozilla.org/dom/json;1"].createInstance(Components.interfaces.nsIJSON.decode

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.