egg 如何同步的方式拿到 this.ctx.curl 的结果?
egg 如何同步的方式拿到 this.ctx.curl 的结果?
如下
async geta(url) {
const res = await this.ctx.curl(url)
return res.data.toString()
}
async handleTemp() {
const data = await this.geta('http://.....')
console.log(data) // 此处打印是能拿到对象的
if(data.status) { // 但是实际上依然是异步, status 访问不到, undefined
....
}
}
如何能正常执行?
不是tostring了么,老表