我试图使用React-Native过滤数据,但Stackoverflow中的信息并没有那么多帮助。
我有什么:
我有一个api-client.js文件:
const URL = 'API_URL';
function getArtists(){
return fetch(URL)
.then(response => response.json())
.then(data => data.topartists.artist)
.then(artists =>artists.map(artist => {
return {
id: artist.mbid,
name: artist.name,
image: artist.image[3]['#text'],
url: artist.url,
likes: 400,
comments: 200,
}
}))
}
export{ getArtists }
但是我收到了错误
undefined不是对象(评估' item.artist.toUpperCase')
希望有人能向我解释我的错误。