getData (data) {
let self = this
this.$axios.post('http://xxx.net:8092/quotes/retrieve', data).then(res => {
console.log(this) //console 输出undefined
const { r_data} = res.data
self.curRic = data
self.ricData = r_data
this.$forceUpdate()
})
},
使用this赋值curRic和ricData失败,输出this发现是undefined,明明使用的是箭头函数为什么会出现这种情况?
我换成self,发现可以赋值成功,但是template中却没有发生变化是什么原因?