微信小程序中的this

在微信小程序中我们可以用this改变页面中的值:

setPlain: function(e) {
    this.setData({
      plain: !this.data.plain
    })
  },

但是在使用的过程中例如出现下面这种情况就会报错:

/**
   * 页面的初始数据
   */
  data: {
    ID: 10
  },

//在函数中更改data中的值
test: function() {
    console.log(this.data.ID)


    function testFun() {
    }

    testFun()
  }
这样可以打印出ID的值,但是我问在testFun中再次打印就会报错:
test: function() {
    console.log(this.data.ID)


    function testFun() {
      console.log(this.data.ID)
    }

    testFun()
  }


//Error:
Cannot read property 'data' of undefined;at pages/test/test page test function
TypeError: Cannot read property 'data' of undefined


这是因为this是指向当前的对象,随着上下文作用域的切换this的执行this的指向会发生改变,我们可以先保存一份this的值然后再使用:

test: function() {
var that = this

console.log(that.data.ID)


function testFun() {
  console.log(that.data.ID)
}

testFun()

}


可以在前端页面中绑定data中的值,然后在程序中更改组件的样式:

https://developers.weixin.qq.com/miniprogram/dev/component/button.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值