收藏
回答

购物车的数量的加减?

点击加减数字变成NaN了怎么?

jian(){
    let that = this
    that.number = that.number - 1 * 1
    console.log(that.number)


  },
  jia(){
    let that = this
    console.log(that.number)


    that.setData({
      number : that.number + 1 * 1
    })
  },

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

3 个回答

  • 微喵网络
    微喵网络
    2020-09-11
    that.data.number
    
    2020-09-11
    有用 1
    回复
  • .
    .
    2020-09-11

    你that.number哪里来的。data里来的不应该是that.data.number?

    2020-09-11
    有用 1
    回复
  • 猛男陈阔
    猛男陈阔
    2020-09-11
    Page({
      /**
       * 页面的初始数据
       */
      data: {
        itemNum:1
      },
      addition(){
        const newItemNum = this.data.itemNum+=1;
        this.setData({
          itemNum:newItemNum
        })
      },
      subtract(){
        const {itemNum} = this.data;
        if(itemNum===1){
            return
        }
        this.setData({
          itemNum:itemNum+=1
        })
       }
      })
    
    2020-09-11
    有用 1
    回复
登录 后发表内容
问题标签