angular.bind 是用来进行上下文绑定,参数动态绑定的工具函数。
var f = angular.bind({a: 'xx'}, function(){ console.log(this.a); } ); f();
参数动态绑定:
var f = function(x){console.log(x)} angular.bind({}, f, 'x')();