嵌入1024 2024-01-11 10:38 采纳率: 0%
浏览 16

微信小程序事件传参与数据同步

index.js:
Page({
  data: {
    count: 0
    },
    CountChange(){
      this.setData({
        count:this.data.count+1
      })
          
        }
  })
index.wxml:
<button type="primary" bind:tap="CountChange">button</button>

Console中:Component "pages/index/index" does not have a method "CountChange" to handle event "tap".
AppData中没有count

  • 写回答

1条回答 默认 最新

  • 瞬间的未来式 2024-01-12 09:16
    关注

    事件放到data外面

    评论

报告相同问题?

问题事件

  • 创建了问题 1月11日