微信小程序踩坑

1、this.setdata使用报错TypeError: this.setdata is not a function问题

onTapHandler: function () {

    this.setdata({

      selectNum: this.data.selectNum + 1

    })

  },

修改为

onTapHandler: function () {

    this.setdata({

      selectNum: this.data.selectNum + 1

    })

  },

即可。

你可能感兴趣的:(微信小程序踩坑)