您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“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錯誤怎么辦”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。