会挽雕弓如满月,西北望,射天狼。这篇文章主要讲述函数方法:call() apply() bind() 自定义绑定对象相关的知识,希望能为你提供帮助。
把方法绑定到对应的对象上,那么该对象就不用再重写一遍相同的方法了,这样就达到了重复利用的目的。
一、bind方法【函数方法(call() apply() bind() 自定义绑定对象)】使用bind重新绑定对象。
function foo() {
console.log(\'绑定对象为:\',this);
}
foo();
var f1 = foo.bind({x:1});
f1();
var f2 = foo.bind(document);
f2();
文章图片
二、apply方法自行设置绑定对象,传入数组作为参数。
function foo(x, y) {
console.log(\'结果\' ,x+y);
console.log(\'绑定对象\', this);
}
foo(1,2);
foo.apply({n: 5}, [1, 2]);
文章图片
三、call方法自行设置绑定对象,传入参数用逗号隔开。
function foo(x, y) {
console.log(\'结果\' ,x+y);
console.log(\'绑定对象\', this);
}
foo(1,2);
foo.call({m: 55}, 11, 22);
文章图片
推荐阅读
- SpringBootSpringApplicationRunListener 是干啥的
- .net core 在Startup.cs 的Configure方法中扩展 IApplicationBuilder
- tomcat+mysql+android studio中遇到的问题
- Flutter沉浸式状态栏/AppBar导航栏/仿咸鱼底部凸起导航
- Android寮€鍙?Android涓韩浠借瘉鍒ゆ柇鏄惁姝g‘
- Android 开发技术周报 Issue#277
- uni-app运行到微信小程序不能打开项目
- androidx.recyclerview.widget.RecyclerView的使用方法
- mybatis 报文档根元素 "mapper" 必须匹配 DOCTYPE 根 "null"