In Javascript, why is the "this" operator inconsistent? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T19:09:24Z http://stackoverflow.com/feeds/question/80084 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent 4 In Javascript, why is the "this" operator inconsistent? Chris 2008-09-17T04:46:25Z 2008-09-17T14:19:36Z <p>In JavaScript, the "this" operator can refer to different things under different scenarios. </p> <p>Typically in a method within a JavaScript "object", it refers to the current object.</p> <p>But when used as a callback, it becomes a reference to the calling object.</p> <p>I have found that this causes problems in code, because if you use a method within a JavaScript "object" as a callback function you can't tell whether "this" refers to the current "object" or whether "this" refers to the calling object.</p> <p>Can someone clarify usage and best practices regarding how to get around this problem?</p> <pre><code> function TestObject() { TestObject.prototype.firstMethod = function(){ this.callback(); YAHOO.util.Connect.asyncRequest(method, uri, callBack); } TestObject.prototype.callBack = function(o){ // do something with "this" //when method is called directly, "this" resolves to the current object //when invoked by the asyncRequest callback, "this" is not the current object //what design patterns can make this consistent? this.secondMethod(); } TestObject.prototype.secondMethod = function() { alert('test'); } } </code></pre> http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent/80095#80095 0 Answer by Ash for In Javascript, why is the "this" operator inconsistent? Ash 2008-09-17T04:48:43Z 2008-09-17T04:54:13Z <p>I believe this may be due to how the idea of <a href="http://en.wikipedia.org/wiki/Closure_(computer_science" rel="nofollow">closures</a> work in Javascript.</p> <p>I am just getting to grips with closures myself. Have a read of the linked wikipedia article.</p> <p>Here's <a href="http://www.javascriptkit.com/javatutors/closures.shtml" rel="nofollow">another article</a> with more information.</p> <p>Anyone out there able to confirm this?</p> http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent/80119#80119 0 Answer by dimarzionist for In Javascript, why is the "this" operator inconsistent? dimarzionist 2008-09-17T04:53:49Z 2008-09-17T04:53:49Z <p>As soon as callback methods are called from other context i'm usually using something that I'm call callback context:</p> <p>var ctx = function CallbackContext() { _callbackSender ... }</p> <pre><code>function DoCallback(_sender, delegate, callbackFunc) { ctx = _callbackSender = _sender; delegate(); } function TestObject() { test = function() { DoCallback(otherFunc, callbackHandler); } callbackHandler = function() { ctx._callbackSender; //or this = ctx._callbacjHandler; } } </code></pre> http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent/80127#80127 5 Answer by Ricky for In Javascript, why is the "this" operator inconsistent? Ricky 2008-09-17T04:54:52Z 2008-09-17T04:54:52Z <p>In JavaScript, "this" always refers to the object invoking the function that is being executed. So if the function is being used as an event handler, "this" will refer to the node that fired the event. But if you have an object and call a function on it like:</p> <pre><code>myObject.myFunction(); </code></pre> <p>Then "this" inside myFunction will refer to myObject. Make sense?</p> <p>To get around it you need to use closures... You can change your code as follows:</p> <pre><code>function TestObject() { TestObject.prototype.firstMethod = function(){ this.callback(); YAHOO.util.Connect.asyncRequest(method, uri, callBack); } var that = this; TestObject.prototype.callBack = function(o){ that.secondMethod(); } TestObject.prototype.secondMethod = function() { alert('test'); } } </code></pre> http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent/80159#80159 3 Answer by Shog9 for In Javascript, why is the "this" operator inconsistent? Shog9 2008-09-17T05:01:18Z 2008-09-17T05:01:18Z <p><code>this</code> corresponds to the context for the function call. For functions not called as part of an object (no <code>.</code> operator), this is the global context (<code>window</code> in web pages). For functions called as object methods (via the . operator), it's the object.</p> <p>But, you can make it whatever you want. All functions have .call() and .apply() methods that can be used to invoke them with a custom context. So if i set up an object Chile like so:</p> <pre><code>var Chile = { name: 'booga', stuff: function() { console.log(this.name); } }; </code></pre> <p>...and invoke Chile.stuff(), it'll produce the obvious result:</p> <pre><code>booga </code></pre> <p>But if i want, i can take and <em>really screw with it</em>:</p> <pre><code>Chile.stuff.apply({ name: 'supercalifragilistic' }); </code></pre> <p>This is actually quite useful...</p> http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent/80177#80177 0 Answer by silvertab for In Javascript, why is the "this" operator inconsistent? silvertab 2008-09-17T05:04:42Z 2008-09-17T05:04:42Z <p>You can also use Function.Apply(<em>thisArg</em>, <em>argsArray</em>)... Where thisArg determines the value of <em>this</em> inside your function...the second parameter is an optional arguments array that you can also pass to your function. </p> <p>If you don't plan on using the second argument, don't pass anything to it. Internet Explorer will throw a TypeError at you if you pass <em>null</em> (or anything that is not an array) to function.apply()'s second argument...</p> <p>With the example code you gave it would look something like:</p> <pre><code>YAHOO.util.Connect.asyncRequest(method, uri, callBack.Apply(this)); </code></pre> http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent/80204#80204 2 Answer by Ryan Grove for In Javascript, why is the "this" operator inconsistent? Ryan Grove 2008-09-17T05:11:34Z 2008-09-17T05:11:34Z <p>In JavaScript, <code>this</code> doesn't refer to the current object, it refers to the current scope. That difference is very important. Often, the current scope <em>is</em> the current object, but sometimes (especially in the case of a closure or an anonymous callback function) the function is executed in the global scope.</p> <p>There are a few ways to deal with this. If you have control over when your function is called, you can use the <code>call()</code> or <code>apply()</code> methods to execute the function in a specific scope. For example:</p> <pre><code>var myObject = { hello: function () { alert('hello!'); } } function foo() { this.hello(); } foo(); // error, since this === window (if executed in a browser) foo.call(myObject); // works, since this === myObject </code></pre> <p>In your sample, you appear to be using the YUI Connection library, which accepts an object (not a function) as the third argument. The following example will make an <code>asyncRequest()</code> call that executes the callback in a specific scope:</p> <pre><code>YAHOO.util.Connect.asyncRequest('GET', '/foo', { scope : myObject, success: function () { this.hello(); // works because this === myObject } }); </code></pre> http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent/80478#80478 16 Answer by Alan Storm for In Javascript, why is the "this" operator inconsistent? Alan Storm 2008-09-17T06:14:36Z 2008-09-17T06:14:36Z <p>Quick advice on best practices before I babble on about the magic <em>this</em> variable. If you want OOP in Javascript that closely mirrors more traditional/classical inheritance patterns, pick a framework, learn its quirks, and don't try to get clever. If you want to get clever, learn javascript as a functional language, and avoid thinking about things like classes.</p> <p>Which brings up one of the most important things to keep in mind about Javascript, and to repeat to yourself when it doesn't make sense. Javascript does not have classes. If something looks like a class, it's a clever trick. Javascript has <strong>objects</strong> (no derisive quotes needed) and <strong>functions</strong>. (that's not 100% accurate, functions are just objects, but it can sometimes be helpful to think of them as separate things)</p> <p>The <em>this</em> variable is attached to functions. Whenever you invoke a function, <em>this</em> is given a certain value, depending on how you invoke the function. This is often called the invocation pattern.</p> <p>There are four ways to invoke functions in javascript. You can invoke the function as a <em>method</em>, as a <em>function</em>, as a <em>constructor</em>, and with <em>apply</em>.</p> <h2>As a Method</h2> <p>A method is a function that's attached to an object</p> <pre><code>var foo = {}; foo.someMethod = function(){ alert(this); } </code></pre> <p>When invoked as a method, <em>this</em> will be bound to the object the function/method is a part of. In this example, this will be bound to foo.</p> <h2>As A Function</h2> <p>If you have a stand alone function, the <em>this</em> variable will be bound to the "global" object, almost always the <em>window</em> object in the context of a browser.</p> <pre><code> var foo = function(){ alert(this); } foo(); </code></pre> <p><strong>This may be what's tripping you up</strong>, but don't feel bad. Many people consider this a bad design decision. Since a callback is invoked as a function and not as a method, that's why you're seeing what appears to be inconsistent behavior.</p> <p>Many people get around the problem by doing something like, um, this</p> <pre><code>var foo = {}; foo.someMethod = function (){ var that=this; function bar(){ alert(that); } } </code></pre> <p>You define a variable <em>that</em> which points to <em>this</em>. Closure (a topic all it's own) keeps <em>that</em> around, so if you call bar as a callback, it still has a reference.</p> <h2>As a Constructor</h2> <p>You can also invoke a function a a constructor. Based on the naming convention you're using (TestObject) this also <strong>may be what you're doing and is what's tripping you up</strong>.</p> <p>You invoke a function as a Constructor with the new keyword.</p> <pre><code>function Foo(){ this.confusing = 'hell yeah'; } var myObject = new Foo(); </code></pre> <p>When invoked as a constructor, a new Object will be created, and <em>this</em> will be bound to that object. Again, if you have inner functions and they're used as callbacks, you'll be invoking them as functions, and <em>this</em> will be bound to the global object. Use that var that = this trick/pattern.</p> <p>Some people think the constructor/new keyword was a bone thrown to Java/traditional OOP programmers as a way to create something similar to classes.</p> <h2>With the Apply Method.</h2> <p>Finally, every function has a method (yes, functions are objects in Javascript) named "apply". Apply lets you determine what the value of <em>this</em> will be, and also lets you pass in an array of arguments. Here's a useless example.</p> <pre><code>function foo(a,b){ alert(a); alert(b); alert(this); } var args = ['ah','be']; foo.apply('omg',args); </code></pre> http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent/81646#81646 0 Answer by ujh for In Javascript, why is the "this" operator inconsistent? ujh 2008-09-17T10:02:27Z 2008-09-17T10:02:27Z <p>If you're using Prototype you can use <a href="http://www.prototypejs.org/api/function/bind" rel="nofollow">bind()</a> and <a href="http://www.prototypejs.org/api/function/bindAsEventListener" rel="nofollow">bindAsEventListener()</a> to get around that problem.</p> http://stackoverflow.com/questions/80084/in-javascript-why-is-the-this-operator-inconsistent/83730#83730 0 Answer by Chase Seibert for In Javascript, why is the "this" operator inconsistent? Chase Seibert 2008-09-17T14:19:36Z 2008-09-17T14:19:36Z <p>If you're using a javascript framework, there may be a handy method for dealing with this. In Prototype, for example, you can call a method and scope it to a particular "this" object:</p> <pre><code>var myObject = new TestObject(); myObject.firstMethod.bind(myObject); </code></pre> <p>Note: bind() returns a function, so you can also use it to pre-scope callbacks inside your class:</p> <pre><code>callBack.bind(this); </code></pre> <p><a href="http://www.prototypejs.org/api/function/bind" rel="nofollow">http://www.prototypejs.org/api/function/bind</a></p>