request请求数据之后 Appdata显示有数据 控制台输出却是undefined?
发布于 4 年前 作者 wei67 2203 次浏览 来自 官方Issues

Appdata显示有数据 控制台输出却是Cannot read property ‘mes’ of undefined?

request请求数据之后 setData Appdata显示有数据 控制台打印不出来 前端显示没问题

3 回复

异步的问题,最好改成同步。

onLoad : async function(){

    await this.getDetail()

    console.log(“onLoad”, this.data.mes)

}

this 指向问题!

你要写成

setTimeout(_=>{ console.log(this.data.mes)},3000)

或者

let that = this

setTimeout(function(){ console.log(that.data.mes) },3000)

回到顶部