我可以在 fetch 中循环 array ob 对象吗?
Can I loop the an array ob objects inside a fetch?
我正在尝试在提取中循环对象数组。有没有一种方法可以在获取内部进行循环或以某种方式使获取 return 数组?
这是我尝试过的:
fetch(url)
.then(response => response.json())
.then(data =>
for (i = 0; i < data.length; i++) {
console.log(data[i])
})
您需要将 .then(data)
括在花括号中
fetch(url)
.then(response => response.json())
.then(data => {
for (i = 0; i < data.length; i++) {
console.log(data[i])
}
})
我正在尝试在提取中循环对象数组。有没有一种方法可以在获取内部进行循环或以某种方式使获取 return 数组?
这是我尝试过的:
fetch(url)
.then(response => response.json())
.then(data =>
for (i = 0; i < data.length; i++) {
console.log(data[i])
})
您需要将 .then(data)
括在花括号中
fetch(url)
.then(response => response.json())
.then(data => {
for (i = 0; i < data.length; i++) {
console.log(data[i])
}
})