Saving fetched JSON into variable(将获取的 JSON 保存到变量中)
问题描述
我正在尝试将 JSON 保存到一个变量中,但似乎我不明白这里的所有内容.我让 JSON 以我喜欢的方式出现在控制台中,但是在我稍后再次尝试调用它之后,它只返回承诺.如何将 JSON 保存到变量中,以便以后使用 JSON 中的对象?
I'm trying to get JSON saved into a variable, but it seems I don't understand everything here. I get JSON show up in console a once the way I like, but after I try to call it again later it only returns promise. How can I get JSON saved into a variable, so I could use objects in JSON later?
var jsondata = fetch(url).then(
function(u){ return u.json();}
).then(
function(json){
console.log(json);
}
)
console.log(jsondata);
推荐答案
let jsondata;
fetch(url).then(
function(u){ return u.json();}
).then(
function(json){
jsondata = json;
}
)
基本上,一旦 Promise 使用实际数据解析,您需要分配您的 jsondata
变量.目前,您将整个承诺分配给您的 jsondata
变量,这不是您想要的.
Basically you need to assign your jsondata
variable once the promise resolves with the actual data. Currently, you're assigning the entire promise to your jsondata
variable which is not what you want.
这篇关于将获取的 JSON 保存到变量中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将获取的 JSON 保存到变量中
基础教程推荐
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01