JavaScript从异步获取访问数据

时间:2019-02-25 11:30:13

标签: javascript

我尝试了async函数与await fetch并得到结果:

http://prntscr.com/mpsp7t

JS代码:

async function getjson(){
  await fetch('products.json')
  .then((res) => res.json())
  .then(function(data){
    trick.push(data)
  })
}
getjson();
const trick = [];
console.log(trick)

但是我现在应该如何访问所有这些数据并将其设置为变量?

0 个答案:

没有答案