- 当前 Bug 的表现(可附上截图)
在开发工具上有回调,在客户端没有回调
- 预期表现
在开发工具上有回调,在客户端没有回调
- 复现路径
- 提供一个最简复现 Demo
let asyncFunc = async function (id) { return wx.getStorageSync(id); } Promise.all([ asyncFunc( "board1" ), asyncFunc( "boardprofile1" ) ]).then(res => { console.log( "test:%o" , res); }). catch (res => { console.log( "error:%o" , res); }) |
请求是否浏览器自带的promise