【vue】this与that 一个坑

【转载自】:https://blog.csdn.net/qq_30378229/article/details/78429374

在Vue中this始终指向Vue,但axios中this为undefined,例如

这里写图片描述

若需要赋值给变量用以渲染数据,可以通过=>函数,这时this为Vue

这里写图片描述

或者可以直接通过: 
let that = this 
将this保存在that中,再在函数中使用that均可 
被坑了很久,一直打印出来undefined,终于解决了

猜你喜欢

转载自www.cnblogs.com/dongzhuangdian/p/9471722.html
今日推荐