老师,this与this_分别指向哪里?两者的作用域分别是什么?
来源:4-3 组件参数校验与非 props 特性
慕码人0402455
2019-05-02
mounted:function(){
/*监听bus上面触发的事件
* */
var this_ = this
this.bus.$on('change',function(msg){
this_.selfContent = msg
})
}
写回答
1回答
-
Dell
2019-05-05
this和this——都指向外层实例对象,而回调函数中没有别调用的 this 指向 bus 这个实例对象
00
相似问题