bind的使用

Posted zhaodagang8

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bind的使用相关的知识,希望对你有一定的参考价值。

bind: 改变this的指向,返回一个新函数

let obj =
name: ‘jason888‘


function fun(name,age)
//console.log(888);
//console.log("this:",this);
console.log("this.name:",this.name);
// console.log("arguments:",arguments.callee);
// console.log("Array:",Array.prototype);
// console.log(name);
// console.log(age);


//let foo = fun.bind(obj,‘meay‘,33);
//foo();

//bind: 改变this指向,返回一个新函数
Function.prototype.bind2 = function(context)
let self = this;
return function()
self.apply(context,Array.prototype.slice.call(arguments,1))



let foo = fun.bind2(obj,‘meay‘,33);
foo();

以上是关于bind的使用的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Binding="Binding" 以编程方式创建 DataTrigger?

如何使用 javafx.beans.binding.Bindings.select(...) 进行简洁的值绑定

使用Binding的RelativeSource

使用 boost::bind 有啥好处?

CentOS7上使用bind9搭建DNS主从服务器

DNS解析与Bind的使用