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?