unknown: Unexpected reserved word 'await'
这个是为什么?
我这个async await写的还有哪里不合理吗
getImageInfo(url){
return new Promise((resolve,reject)=>{
wx.getImageInfo({
src: url,
success (res) {
resolve(res.path)
}
})
})
},
async getTmp(url){
let arr = []
url.map(res=>{
await this.getImageInfo(res).then(res2=>{ //这行报错
arr.push(res2)
})
})
},
可以试试: