const res = await uni.connectWifi(options);
console.log('设备连接结果:', res);
const res = await uni.startWifi();
console.log('微信wifi模块初始化:', res);
使用await调用这些方法,返回的结果都是[null, {…}],第一个为null,第二个是真实的数据,这是什么原因?
const res = await uni.connectWifi(options);
console.log('设备连接结果:', res);
const res = await uni.startWifi();
console.log('微信wifi模块初始化:', res);
使用await调用这些方法,返回的结果都是[null, {…}],第一个为null,第二个是真实的数据,这是什么原因?
1 个回复
爱豆豆 - 办法总比困难多
就是这样的 这是Promise的问题 不要使用async await 和.then这种方式
用api内的回调接受就行了
或者你用Promise封装一下