119

我正在尝试在 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 有什么问题吗?或者这段代码有什么问题?

4

5 回答 5

261

我的新方法: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属性,只有responseTextand responseXML。只要 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);

兼容性:这种方法应该适用于任何支持XMLHttpRequestJSON.

JSONHttpRequest

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

var req = new JSONHttpRequest();

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

全面披露:我是 Pixels|Bytes 的所有者。我认为我的脚本是原始问题的一个很好的解决方案,但今天它已经过时了。我不建议再使用它了。

于 2011-12-07T14:30:05.317 回答
31

您可以简单地设置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 的文档

于 2017-08-04T08:28:05.113 回答
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});
于 2013-07-12T07:27:21.147 回答
2

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

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

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

或者

使用json_parse:它不使用eval

于 2009-12-29T06:19:05.840 回答
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

于 2011-03-21T06:29:13.560 回答