微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – this.someFunction.call(this,param)的目的是什么?

我在很多地方遇到过一些具有这种模式的代码
this.someFunction.call(this,param);

但在我看来,这只是一种更冗长的打字方式

this.someFunction(param)

该模式有时会出现在作为回调提供的函数内.碰巧使用Backbone,如果相关的话.像这样的东西:

Backbone.View.extend({
    // other stuff ...

    someFunction: function(param) {
        // ...
    },anotherFunction: function() {
        this.collection.on("some_event",function() {
            this.someFunction.call(this,param);
        });
    }
});

模式实际上是否具有不等于this.someFunction(param)的效果,还是有人只是担心闭包没有捕获到正确的?

感谢您的任何见解!

解决方法

Does the pattern actually have an effect that isn’t the equivalent of this.someFunction(param)?

不,他们确实是一样的.假设this.someFunction是一个从Function.prototype继承.call的函数(但这是挑剔).

看起来有些人过于谨慎,或者代码是一些没有使用过两次的东西.或者作者可能知道this-context-in-callbacks issue但未能正确处理它.

原文地址:https://www.jb51.cc/js/157673.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐