我尝试了async函数与await fetch并得到结果:
JS代码:
async function getjson(){
await fetch('products.json')
.then((res) => res.json())
.then(function(data){
trick.push(data)
})
}
getjson();
const trick = [];
console.log(trick)
但是我现在应该如何访问所有这些数据并将其设置为变量?