VUE 关于methods里函数嵌套函数获取不到this对象
问题:例子methods:{ init(){ test(); function test(){ console.log(this); //无法获取到this对象,undefined } }}解决:要用箭头函数methods:{ init(){ var test = () => { console.log(this); //获取到vue实例对象 } test(); }}注意:箭头函数要写到调用的前面,否则会无法调用,报错test不是
原创
2021-04-12 11:07:52 ·
2863 阅读 ·
0 评论