收藏
回答

使用回调函数拿不到this如何处理?

在下列代码中调用login仍然不能在console打印出正确的值。console.log(that.hasSignup)返回undefined

Page({

  data: {

    hasLoginfalse,

    hasCheckfalse,

    hasRegisterfalse,

    hasSignupfalse,

    openid""
  
    },

  async login() {

    let that = this

    console.log(that.hasSignup)

    console.log(that.hasSignup == false)  

  },

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

2 个回答

  • showms
    showms
    06-30
    that.data.hasSignup
    


    06-30
    有用
    回复
  • Mr.Zhao
    Mr.Zhao
    06-30

    vue串台了吗? 是this.data.hasSignup

    06-30
    有用
    回复
登录 后发表内容