enter image description here我在ComponentDidMount
中使用了一个API,并将获取的数据推送到一个数组中,现在我无法迭代该数组。
let _attactionArray = []
export function fetchDistance(attrName, Latitude1, Longitude1, Latitude2,
Longitude2) {
_attactionArray.push({
key: Latitude1,
value: Longitude1
})
_attactionArray.push({
key: Longitude1,
value: Latitude1
})
}
componentDidMount() {
fetch("https://swapi.co/api/people/1")
.then(result => {
return result.json()
})
.then(data => {
fetchDistance("", 3.105, 1.305, "48.853", "2.3498")
})
console.log(_attactionArray) // here iam having problem*
}
我无法对其进行迭代,将不胜感激。