如下是如上代码,无法接收返回参数:
onl oad(){ const aa = await this.getRadioExams(); console.log("aa的值", aa) }
正确写法如下两种
添加 async ,本人测试成功
data() { return { radioList: [] } }, onLoad() { let _this = this; this.getRadioExams().then(data => { console.log("返回请求的值为:", data); _this.radioList = data.rows; }) },
或者解决方案二
//添加 async ,本人测试成功 async onl oad() { let _this = this; _this.radioList=await this.getRadioExams(); },