js异步数据从json到数组
如何使用异步获取 JSON 数据并将它们发送到变量或以任何方式处理它们?实在是无法理解这一点。
let FormEntries=[];
async function getUserAsync(){
let response = await fetch(`myremotejson`);
let data = await response.json()
return data;
}
function processData(data){
console.log(data) //returns 'undefined', 'cause data didn't come to function?
FormEntries = data; //does nothing, 'cause data didn't come to function?
}
getUserAsync()
.then(data => console.log(data)) //returns data - OK
.then(data => processData(data)) //I want to send these data to my FormEntries array, HOW?
``
How can I get JSON data with async and send them to variable or process them in any way? Really can't understand that.
let FormEntries=[];
async function getUserAsync(){
let response = await fetch(`myremotejson`);
let data = await response.json()
return data;
}
function processData(data){
console.log(data) //returns 'undefined', 'cause data didn't come to function?
FormEntries = data; //does nothing, 'cause data didn't come to function?
}
getUserAsync()
.then(data => console.log(data)) //returns data - OK
.then(data => processData(data)) //I want to send these data to my FormEntries array, HOW?
``
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
try this