vue render函数 获取不到this

新手上路,请多包涵

render: (h) => {

const self = this;
cosole.log(self)// undefined

}
//"vue": "^2.6.10",

render(h){
cosole.log(this)
打印之后 给了一个Proxy。为什么?
image.png

}

阅读 5.1k
2 个回答

不要写箭头函数,箭头函数没有this,他里面的this你可以看做一个变量,这样就找到上层作用域了

render(h) {
    cosole.log(this);
}

如上,不要用箭头函数就可以了,详情请参考各种讲述箭头函数特性的文档、博文。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题