我有问题返回对象,我从b.js调用测试函数,但我不能 阅读我如何能够这个功能和解析? ,请帮助我
//a.js
export async function test(){
try{
var value = await AsyncStorage.getItem("@user");
return value ;
}
catch(e){
console.log('error', e);
}
}
我想解析aa例如aa.id或aa.name
//b.js
import {test } from '../a.js';
const aa = test() ;
alert(aa); //aa = Promise {_40: 0, _65: 0, _55: null, _72: null}
答案 0 :(得分:0)
你也必须在b.js等待。这样的事情会起作用。
const aa = async () => {
return await test()
}