js中 call(this)this是指向那里的

const BaseTable = require('../../core/baseTable');

const Table = function() {
    BaseTable.call(this);//这里的this是不是指向本js文件
};
阅读 3.9k
5 个回答

你先想一个问题:this默认是指向哪儿的?

当然不是指这个文件,this的值要根据调用位置来看的,话题比较复杂,刚好写了一篇解析this的文章,有空可以看看。

这种写法需要代码在运行时才能确认this的指向

就这段代码而言,this 指向 function 内部,function 声明的函数都会开辟新的作用域,this 也会绑定到 function

例如下面这段代码输出 rx

const foo = function () {
  this.name = 'rx'
  console.log(this.name)
}

foo()

this指向

function() {
// 指向这里
this.a = '1';
BaseTable.call(this.a);// 能访问到a
}
推荐问题
宣传栏