gpt4 book ai didi

JavaScript 获取。如何处理结果

转载 作者:行者123 更新时间:2023-12-01 03:19:53 24 4
gpt4 key购买 nike

我目前正在使用 fetch,想知道如何使回调更清晰,但仍然使用箭头函数。例如,我想在成功时进行循环。我应该使用什么语法?

代码

fetch(url).then(res => res.json())
.then(data => console.log(data.items))
.catch(e => console.log('error'))

最佳答案

除了使用几个大括号并以通常的方式进行迭代之外,没有什么可做的

fetch(url).then(res => res.json())
.then(data => {
for (const item of data.items) {
// stuff
}
})
.catch(e => console.log('error'))

您当然可以将其放入一个函数中并调用该函数,如果这让您更高兴的话。

关于JavaScript 获取。如何处理结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45289396/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com