Explanation asked about the value of 'this'

2020-05-01 01:44发布

I have this class in Javascript:

return function (settings) {
    var items = [],
        formHelper = new FormHelper(items),
        that = this;

    this.currentItem;

    this.initialize = function () {
        settings.listFn().then(function (response) {
            angular.copy(response, items);

            if (response.length > 0) {
                that.setCurrentItem(response[0]);
            }
        });
    }
}

In the initialize method, I use a promise. When this promised is finished, the anonymous function is executed. Within the function you see the use of that, which is declared at line 4. When I use the this keyword instead of that, this points to window, while that points to the object.

I am wondering why this is. Could someone explain how this works? Why it behaves like this?

2条回答
▲ chillily
2楼-- · 2020-05-01 02:13

The callback you pass to the promise gets called asynchronously. In that case, this refers to the default context, which is the global window in the browser, and module in node.js, for example.

If you want to prevent this, use .bind() to set the context of the function to your liking. (Note: Without polyfill, .bind() is not available until IE9)

this.initialize = function () {
    settings.listFn().then(function (response) {
        angular.copy(response, items);

        if (response.length > 0) {
            that.setCurrentItem(response[0]);
        }
    }.bind(this));
}
查看更多
贪生不怕死
3楼-- · 2020-05-01 02:30

The value of this is determined by how the function is called, not by how or where it is defined.

Since you are passing the function to some third party code (.then), you have to be aware that it is not you who calls the function, but the third party code, and you won't have any control over how the function is called.
At some point the callback will most likely be called in the way that most functions are called, simply as

someFunction()

In that case, this refers to the global object which happens to be window in browsers (this is undefined if the function is in strict mode).

More information on MDN.

查看更多
登录 后发表回答