Vue 报错TypeError: this.$set is not a function 的解决方法
程序员文章站
2022-05-25 12:45:58
报错场景:将api中得到的response数据,用vue$set()使数据动态响应
报错代码:
methods: {
texttranslate: fu...
报错场景:将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 的解决方法
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#
-
Vue 报错TypeError: this.$set is not a function 的解决方法
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#
-
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#