获取数据时: 无法对未装载的组件执行 React 状态更新。这个应用程序还能用,但反应表明我可能造成了内存泄漏。
这是不可操作的,但它表明应用程序中存在内存泄漏。要修复这个问题,请取消 useEffect 清理函数中的所有订阅和异步任务。”
为什么我总是收到这样的警告?
我试着研究这些解决方案:
Https://developer.mozilla.org/en-us/docs/web/api/abortsignal
Https://developer.mozilla.org/en-us/docs/web/api/abortcontroller
但这还是给了我警告。
const ArtistProfile = props => {
const [artistData, setArtistData] = useState(null)
const token = props.spotifyAPI.user_token
const fetchData = () => {
const id = window.location.pathname.split("/").pop()
console.log(id)
props.spotifyAPI.getArtistProfile(id, ["album"], "US", 10)
.then(data => {setArtistData(data)})
}
useEffect(() => {
fetchData()
return () => { props.spotifyAPI.cancelRequest() }
}, [])
return (
<ArtistProfileContainer>
<AlbumContainer>
{artistData ? artistData.artistAlbums.items.map(album => {
return (
<AlbumTag
image={album.images[0].url}
name={album.name}
artists={album.artists}
key={album.id}
/>
)
})
: null}
</AlbumContainer>
</ArtistProfileContainer>
)
}
编辑:
在 api 文件中,我添加了一个 AbortController()
并使用了一个 signal
,这样我就可以取消一个请求。
export function spotifyAPI() {
const controller = new AbortController()
const signal = controller.signal
// code ...
this.getArtist = (id) => {
return (
fetch(
`https://api.spotify.com/v1/artists/${id}`, {
headers: {"Authorization": "Bearer " + this.user_token}
}, {signal})
.then(response => {
return checkServerStat(response.status, response.json())
})
)
}
// code ...
// this is my cancel method
this.cancelRequest = () => controller.abort()
}
我的 spotify.getArtistProfile()
是这样的
this.getArtistProfile = (id,includeGroups,market,limit,offset) => {
return Promise.all([
this.getArtist(id),
this.getArtistAlbums(id,includeGroups,market,limit,offset),
this.getArtistTopTracks(id,market)
])
.then(response => {
return ({
artist: response[0],
artistAlbums: response[1],
artistTopTracks: response[2]
})
})
}
但是因为我的信号是用于在 Promise.all
中解析的单个 api 调用,所以我不能保证 abort()
,所以我将始终设置状态。