从 XmlHttpRequest.responseJSON 解析 JSON

IT技术 javascript json firefox-addon bit.ly
2021-03-01 04:27:05

我正在尝试用 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 未定义” var bitlyUrl = jsonResponse.results[url].shortUrl;我在这里解析 JSON 时做错了什么吗?或者这段代码有什么问题?

5个回答

新方法我: 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 的所有者。我认为我的脚本是原始问题的一个很好的解决方案,但它今天已经过时了。我不建议再使用它。

四年后,这仍在帮助人们。:) 链接到博客很好 IMO,因为它确实是问题的完整答案,包括示例代码和下载。谢谢!
2021-04-15 04:27:05
@GrunionShaftoe 你能解释一下,这是什么意思?我不建议使用新库。我推荐的解决方案fetch是标准 JavaScript。
2021-04-16 04:27:05
“使用新库”并不像人们想象的那么有用。
2021-05-07 04:27:05
+1; IMO 这是这个问题的真正答案 - 没有 jQuery 只是普通的旧香草XMLHttpRequest问题是关于什么的。
2021-05-08 04:27:05
这里s a jquery version too. If you are getting crossbrowser issue试试吧,一般framework`s处理这些问题的更好: api.jquery.com/jquery.parsejson
2021-05-15 04:27:05

你可以简单地设置 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 后)
2021-05-15 04:27:05

注意:我只在 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});
如果我是你,我会定义一个getter而不是函数属性。只需更换valueget传递给该对象Object.defineProperty,您可以使用responseJSON像对其他任何响应变量。
2021-04-24 04:27:05

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

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

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

或者

使用json_parse:它不使用eval

对于使用 chrome privs 运行的 Firefox 插件,不要尝试评估从外部来源获得的任何内容。相反,使用 JSON.parse(至少在 FF 3.5 及更高版本中)。
2021-05-14 04:27:05

如果这是用于 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