为什么 AsyncStorage 会 return "null" 与 React Native?

Why AsyncStorage will return "null" with react native?

现在,我正在制作一个带有 React Native 和 Expo 的移动应用程序,并尝试使用 AsyncStorage 来存储一组键和值。 但是,我可以从 AsyncStorage.get('key');

得到 "null"

下面的代码是我关于使用 AsyncStorage 的部分代码。

async checkQrUrl(data) {
const asyncStorageKey = JSON.stringify(data);

if (this.state.couponType === 'once') {
  try {
    if (data === this.state.UniqueQrUrl) {
      await AsyncStorage.setItem('qrcodevancoupon001shop', 'aaa');
      Alert.alert('一回切りのクーポンを使用しました');
    } else if (data !== this.state.UniqueQrUrl) {
      Alert.alert('QRコードが違います');
    } else {
      Alert.alert('予期せぬ障害が発生しました。前画面に戻って再度お試しください');
    }
  } catch (error) {
    console.log(error);
  }
}
}

除了这段代码,下面还有一个是获取key。

async componentDidMount() {
const { value } = this.props.navigation.state.params;
await AsyncStorage.getItem(`qrcodevancoupon001shop`, (result) => {
  this.setState({ couponModalStatus: result });

});

}

const value = await AsyncStorage.getItem('qrcodevancoupon001shop');

放在变量名里return

this.setState({ couponModalStatus: value });