ReactNative AsyncStorage更新状态或将执行哪个生命周期

时间:2017-10-07 10:15:41

标签: react-native asyncstorage

我根据AsyncStorage的值设置状态。例如:

 async componentDidMount() {
    const token = await AsyncStorage.getItem('token');
    this.setState({ token });
 }

现在我想要在更新令牌时(由其他组件或由于超时)更新状态。我尝试将逻辑放在componentWillReceiveProps中但是没有用。任何帮助将不胜感激。

0 个答案:

没有答案