作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个构造函数注册一个事件处理程序:
function MyConstructor(data, transport) {
this.data = data;
transport.on('data', function () {
alert(this.data);
});
}
// Mock transport object
var transport = {
on: function(event, callback) {
setTimeout(callback, 1000);
}
};
// called as
var obj = new MyConstructor('foo', transport);
data
属性。看起来
this
并不引用创建的对象,而是引用另一个对象。
function MyConstructor(data, transport) {
this.data = data;
transport.on('data', this.alert);
}
MyConstructor.prototype.alert = function() {
alert(this.name);
};
最佳答案
您应该了解的this
this
(又称“上下文”)是每个函数中的特殊关键字,其值仅取决于函数的调用方式,而不取决于函数的定义方式/定义时间/位置。它不受其他变量之类的词法作用域的影响(箭头函数除外,请参见下文)。这里有些例子:
function foo() {
console.log(this);
}
// normal function call
foo(); // `this` will refer to `window`
// as object method
var obj = {bar: foo};
obj.bar(); // `this` will refer to `obj`
// as constructor function
new foo(); // `this` will refer to an object that inherits from `foo.prototype`
this
的更多信息,请查看
MDN documentation。
this
this
this
,而是要访问它引用的对象。这就是为什么一个简单的解决方案是简单地创建一个也引用该对象的新变量。该变量可以具有任何名称,但常见的名称是
self
和
that
。
function MyConstructor(data, transport) {
this.data = data;
var self = this;
transport.on('data', function() {
alert(self.data);
});
}
self
是普通变量,因此它遵循词汇范围规则,并且可以在回调内部访问。这还有一个优点,就是您可以访问回调本身的
this
值。
this
-第1部分
this
的值,因为它的值是自动设置的,但实际上并非如此。
.bind
[docs],该方法返回一个新函数,该函数将
this
绑定到一个值。该函数的行为与您调用
.bind
的行为完全相同,只是您设置了
this
。无论如何或何时调用该函数,
this
始终将引用传递的值。
function MyConstructor(data, transport) {
this.data = data;
var boundFunction = (function() { // parenthesis are not necessary
alert(this.data); // but might improve readability
}).bind(this); // <- here we are calling `.bind()`
transport.on('data', boundFunction);
}
this
绑定到
MyConstructor
的
this
的值。
jQuery.proxy
[docs]。这样做的原因是,使您在取消绑定事件回调时不需要存储对该函数的引用。 jQuery在内部进行处理。
this
绑定。而是像普通变量一样在范围内查找
this
。这意味着您不必致电
.bind
。这不是它们唯一的特殊行为,请参考MDN文档以获取更多信息。
function MyConstructor(data, transport) {
this.data = data;
transport.on('data', () => alert(this.data));
}
this
-第2部分
this
应引用的值。这基本上与您自己绑定它相同,但是函数/方法可以为您完成它。
Array#map
[docs]是这样的方法。它的签名是:
array.map(callback[, thisArg])
this
。这是一个人为的示例:
var arr = [1, 2, 3];
var obj = {multiplier: 42};
var new_arr = arr.map(function(v) {
return v * this.multiplier;
}, obj); // <- here we are passing `obj` as second argument
this
的值。例如,
jQuery's $.ajax
method [docs]描述了一个名为
context
的选项:
function Foo() {
this.data = 42,
document.body.onclick = this.method;
}
Foo.prototype.method = function() {
console.log(this.data);
};
this.method
被分配为单击事件处理程序,但是如果单击
document.body
,则记录的值将为
undefined
,因为在事件处理程序中,
this
引用了
document.body
,而不是实例。
Foo
。
this
所指的取决于函数的调用方式,而不是函数的定义方式。
function method() {
console.log(this.data);
}
function Foo() {
this.data = 42,
document.body.onclick = this.method;
}
Foo.prototype.method = method;
.bind
将
this
显式绑定到特定值
document.body.onclick = this.method.bind(this);
this
)分配给另一个变量来显式调用该函数作为对象的“方法”:
var self = this;
document.body.onclick = function() {
self.method();
};
document.body.onclick = () => this.method();
关于javascript - 如何在回调中访问正确的“this”?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57651911/
我是一名优秀的程序员,十分优秀!