admin管理员组文章数量:1343351
I have this code:
var foo = {
x: 2,
bar: function() {
alert(this.x);
}
};
Why does foo.bar()
alert 2
while [foo.bar][0]()
alerts undefined
?
I have this code:
var foo = {
x: 2,
bar: function() {
alert(this.x);
}
};
Why does foo.bar()
alert 2
while [foo.bar][0]()
alerts undefined
?
-
I'm not sure why, but
[foo.bar][0].call(foo)
works. – Blender Commented Jan 31, 2013 at 6:44 - 1 when you call it like [foo.bar][0]() this actually points to the function itself – Kimitsu Desu Commented Jan 31, 2013 at 6:51
-
@KimitsuDesu Nope,
this
points to the array[foo.bar]
, not the function itself. – xdazz Commented Jan 31, 2013 at 6:59 - my bad, got it wrong there – Kimitsu Desu Commented Jan 31, 2013 at 7:03
4 Answers
Reset to default 9So, technically [foo.bar][0]
is equivalent to foo.bar
, but at the point of calling the function bar
has lost the "lexical binding" with the foo
object, so when you call it, JavaScript actually executes the following:
foo.bar.call([foo.bar]);
Generally, this expression:
XXX.yyy(args)
Is interpreted as:
XXX.yyy.call(XXX, args);
In this case XXX
is [foo.bar]
and .yyy
is [0]
.
To fix it, you need to explicitly bind foo
again:
[foo.bar][0].call(foo);
when you do [foo.bar][0]()
, this
in the bar
is [foo.bar]
, the array but not the object foo
.
Just imaging that the method name is the number 0
(although that is wrong syntax).
([foo.bar]).0(); // you see, `this` became the array object: [foo.bar]
And [foo.bar].x
is undefined
.
Its because you are invoking the function on the array object. The "this" keyword is equal to the array.
[foo.bar][0]();
In javascript the context in which a function is invoked can vary. The "this" keyword can have different values based on how it was invoked. If a function is invoked on an object (including arrays), the language will make "this" equal to the object that it was called on. On the other hand you can save the function of another object into another variable and invoke it. Like you did with this:
var test=[foo.bar][0];
test();`//here is alert "2"
and the context will be the window.
Research the call and apply methods in javascript. This will open you eyes on how flexible the "this" keyword is. This is a place of much confusion among many programmers ing from other languages, but once this principle is understood there is a lot of power that es from it. JQuery for example uses "call" and "apply" to have the callbacks of events invoked in the context of the element that the event was fired on.
That is because when you make [foo.bar]
an array you are isolating it from the main object (foo) and in your function you alert this.x
and in a newly created object [foo.bar] this
is undefined
本文标签: Call a function from javascript arrayStack Overflow
版权声明:本文标题:Call a function from javascript array - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743639053a2514396.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论