onLoad() { app.globalData.num1 = this.data.num3;} })获取到小程序全局唯一的 App 实例。
var list2 Page({onLoad: async function () { var res = await wx.cloud.callFunction({ ...
我在data中定义一个num1数组,在getBarOption函数中获取数据库数据,想把这个数据赋值给num1,但是无法完成赋值。网上说是异步问题,我尝试了增加async和await,然后勾选“增强编译”,但是还是不行,报错说resCustomer.data中的data未定义。我用console.log(resCustomer)打印结果也是未定义,但是res是能获取到数据的。这是...