亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue報TypeError: this.$set is not a function錯誤怎么辦

發布時間:2021-07-12 12:22:11 來源:億速云 閱讀:3007 作者:小新 欄目:web開發

這篇文章主要為大家展示了“Vue報TypeError: this.$set is not a function錯誤怎么辦”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Vue報TypeError: this.$set is not a function錯誤怎么辦”這篇文章吧。

報錯場景:將APi中得到的response數據,用Vue$set()使數據動態響應

報錯代碼:

 methods: {
  textTranslate: function (text, to) {
 
   $.ajax({
    url: 'http://openapi.youdao.com/api',
    type: 'post',
    dataType: 'jsonp',
    data: {
     q: text,
     appKey: this.appKey,
     salt: this.salt,
     from: this.from,
     to: to,
     sign: md5(this.appKey + text + this.salt + this.key)
    },
    success: function (data) {
     this.$set(this.$data, 'translatedText', data.translation[0])
    }
   })
  }
 }

報錯原因:這里的this指向的不是VueModel,

解決方法1:在執行函數中定義指向Model的變量 let vm = this ,用該變量替代this

 methods: {
  textTranslate: function (text, to) {
   let vm = this
   $.ajax({
    url: 'http://openapi.youdao.com/api',
    type: 'post',
    dataType: 'jsonp',
    data: {
     q: text,
     appKey: this.appKey,
     salt: this.salt,
     from: this.from,
     to: to,
     sign: md5(this.appKey + text + this.salt + this.key)
    },
    success: function (data) {
     vm.$set(vm.$data, 'translatedText', data.translation[0])
    }
   })
  }
 }

解決方法2:將。siccess改為箭頭函數的寫法,這樣子箭頭函數里的this其實是指向VueModel的,這樣子用this看不會報錯了

success: (data) => {
     this.$set(this.$data, 'translatedText', data.translation[0])
    }

以上是“Vue報TypeError: this.$set is not a function錯誤怎么辦”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜春市| 舞钢市| 涿州市| 东丰县| 盱眙县| 达拉特旗| 和静县| 兴文县| 泰顺县| 花莲县| 崇义县| 陇南市| 招远市| 夹江县| 彩票| 永康市| 南雄市| 镇巴县| 大冶市| 孝昌县| 张掖市| 灵石县| 张家港市| 九寨沟县| 泊头市| 东乡族自治县| 砀山县| 宁武县| 唐山市| 武强县| 双柏县| 西华县| 同江市| 甘泉县| 金阳县| 大洼县| 米泉市| 于都县| 黄山市| 英德市| 彭水|