【发布时间】:2021-09-28 16:01:24
【问题描述】:
我在我的 spotify api 应用程序中使用 react-native,当我想使用 axios(在 useEffect 中,因为我想在组件加载时呈现返回的项目)从我的服务器获取数据时,它会抛出错误: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in a useEffect cleanup function。所以如果有人知道如何解决这个问题,我会非常感激。
import React, {useEffect, useState} from 'react'
import { View, Text, StyleSheet, Image, FlatList, ActivityIndicator} from 'react-native'
import axios from 'axios';
import AsyncStorage from '@react-native-async-storage/async-storage';
export default function ArtistsCom({route}) {
const type = route.name.toLowerCase();
const [time, setTime] = useState('short_term');
const [access_token, setAccess_token] = useState('');
const [refresh_token, setRefresh_token] = useState('');
const [items, setItems] = useState([]);
const [loading, setLoading] = useState(true);
useEffect(() => {
setLoading(true);
AsyncStorage.getItem('refresh_token')
.then(value => setRefresh_token(value));
const getDataAsync = async () => {
const res = await axios.post(`http://localhost:3001/api/refresh`, {
headers: {
body: {
refresh_token: refresh_token
}
}
})
console.log(res);
setAccess_token(res.data.access_token);
return res;
};
getDataAsync();
}, []);
return (
<View>
<View>
{!loading ? items.map((item, key) => {
return (
<View key={key} style={{width: 150, height: 150, margin: 10}}>
<Image style={{width: '100%', height: '100%'}} source={{uri: type == 'artists' ? item.images[0].url : item.album.images[0].url}} />
<View style={{position: 'absolute', bottom: 0, left:4, height: 20, width: '100%', backgroudColor: 'red'}}><Text style={{color: 'white'}}>{key+1}. {item.name}</Text></View>
</View>
)
}) : <Text>Loading...</Text>}
</View>
</View>
)
}
【问题讨论】:
-
这是您的完整代码吗?当您从存储中检索刷新令牌时,我看到的唯一状态更新是
setRefresh_token(value)。如果是 axios 调用,那么您可以使用取消令牌并在组件卸载时终止正在进行的请求。 -
这是我的错。在代码中我没有
setItems()。问题出在getDataAsync()(我认为)
标签: reactjs react-native axios react-hooks use-effect