标签: react-native asyncstorage
我根据AsyncStorage的值设置状态。例如:
async componentDidMount() { const token = await AsyncStorage.getItem('token'); this.setState({ token }); }
现在我想要在更新令牌时(由其他组件或由于超时)更新状态。我尝试将逻辑放在componentWillReceiveProps中但是没有用。任何帮助将不胜感激。