收藏
回答

request请求数据之后 Appdata显示有数据 控制台输出却是undefined?

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

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




回答关注问题邀请回答
收藏

3 个回答

  • o0o有脾气的酸奶
    o0o有脾气的酸奶
    2019-10-28

    onLoad : async function(){

        await this.getDetail()

        console.log("onLoad", this.data.mes)

    }


    2019-10-28
    有用
    回复
  • 老张
    老张
    2019-10-27

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

    2019-10-27
    有用
    回复
  • Listen
    Listen
    2019-10-26

    this 指向问题!

    你要写成

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

    或者

    let that = this

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

    2019-10-26
    有用
    回复
登录 后发表内容
问题标签