在anglejs中使用angular.bind是什么?在哪里使用?

前端之家收集整理的这篇文章主要介绍了在anglejs中使用angular.bind是什么?在哪里使用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Angularjs中使用angular.bind是什么。请提供一个例子。从 https://docs.angularjs.org/api/ng/function/angular.bind可以理解
Angular.bind是一个效用函数,它结合了 function.bindpartial function application中的功能

绑定(通常)是想要将当前上下文绑定到一个函数,但实际上会在稍后执行它。

当使用$ http和处理承诺进行HTTP调用时,这可能有用:

$http.get('url').then(angular.bind(this,function(response) { 
        this.response = response; //use this (which is the bound context) 
    });

在上面的例子中,函数里面的这个内容不会在$ http上下文中引用,除非我们明确地绑定它。这是一个常见的JavaScript问题(在回调中),因为它与上下文的动态绑定(与大多数流行的面向类的语言不同)。

当您想要创建已经传递其一些参数的函数时,将使用部分应用程序。一个很简单的例子:

function add(x,y) { 
    return x + y; 
}

var add10To = angular.bind(this,add,10);

console.log(add10To(5));
// outputs 15

与Angular.bind一起,角色团队正在把这两个组合在一起。

原文链接:https://www.f2er.com/angularjs/144469.html

猜你在找的Angularjs相关文章