青青草国产精品视频,亚洲一区二区三区四区在线观看,国产精品1234区,日本黄色一级

微信小程序 this.setData is not a function

善微科技 2023 04月12日 發(fā)布

在一般的函數(shù)中:


  bindFaChange1: function (e) {

    console.log('picker發(fā)送選擇改變,攜帶值為', e.detail.value)

    this.setData({

      index1: e.detail.value

    })

  }

this.setData是正確的。


但當(dāng)在函數(shù)中有個(gè)請(qǐng)求(wx.request)時(shí):



formSubmit: function (e) {

    wx.request({

      method: 'POST',

      header: header,

      url: url,

      dataType: 'json',

     success: function (res) {

           this.setData({

              data1: true

            })

      }

    })

}    


這樣會(huì)報(bào)錯(cuò)誤:this.setData is not a function.


解決方法就是 :在請(qǐng)求(wx.request)外面添加:var that=this;將success中的


           this.setData({

              data1: true

            })

改為:


           that.setData({

              data1: true

            })


如沒(méi)特殊注明,文章均為善微網(wǎng)絡(luò)原創(chuàng),轉(zhuǎn)載請(qǐng)注明來(lái)自http://www.tianfbx.com/news/948.html
?