componentDidMount(){
console.log("get")
AsyncStorage.getItem('token')
.then((res)=>{
console.log(res)
})
}
我有带有console.log和AsyncStorage.getItem函数的componentDidMount。我想在获取令牌值后进行axios调用。
但是问题是AsyncStorage.getItem无法正常工作 get //console.log('get')
被打印为没有资源的日志。
任何帮助请如何获得价值?我在做错什么吗?
答案 0 :(得分:2)
您可以执行以下操作。
componentDidMount(){
this.onGetToken();
}
onGetToken = async () => {
try {
const token = await AsyncStorage.getItem('token');
console.log("get")
// call api using axios with token value
} catch(e => console.info('error for getting token', e))
}
答案 1 :(得分:0)
尝试仅重新启动应用程序,asyncStorage将正常运行。