问题描述
我最近一直在使用 fetch API 和 Promises,我遇到了 .json() ..json() 通常返回与 JSON.parse 相同的输出.我用谷歌搜索了这个问题,结果指向了其他方向.
I have been working with fetch API and Promises recently and I came across .json() . Oftentimes .json() returns the same output as JSON.parse. I googled the question and the results pointed in other directions.
XHR 和 JSON.parse 示例:
Example with XHR and JSON.parse:
$('#xhr').click(function(){
var XHR = new XMLHttpRequest();
XHR.onreadystatechange = function(){
if (XHR.status == 200 && XHR.readyState == 4) {
$('#quote').text(JSON.parse(XHR.responseText)[0]);
}
};
XHR.open("GET", url);
XHR.send();
});
Fetch API 示例:
Example with Fetch API:
$('#fetch').click(function(){
fetch(url)
.then(function(res){
return res.json();
})
.then(function(quote){
$('#quote').text(quote);
})
.catch(function(err){
handleError(err);
});
});
有人能解释一下这些看似相似的概念之间的区别吗?谢谢
Could someone please explain the difference between these seemingly similar concepts ? Thanks
推荐答案
Body.json() 是异步的,并返回一个解析为 JavaScript 对象的 Promise 对象.JSON.parse() 是同步的,可以解析一个字符串并改变结果返回的 JavaScript 对象.
Body.json() is asynchronous and returns a Promise object that resolves to a JavaScript object. JSON.parse() is synchronous can parse a string and change the resulting returned JavaScript object.
这篇关于JSON.parse() 与..json()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!



大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)