// 官方写法,第二个参数类型必须为数组
foo.apply('obj', [0]); //实现该方法
// js实现
// 在函数参数中 argArray=[] 默认值
Function.prototype.hyApply = function(thisArg, argArray = []) {
// thisArg 必须是Object 类型, 由于arrArray传入时是个数组,所以给个默认值是[]
// 1.获取到真实需要调用的函数:获取当前this指向
var fn = this;
// 2.绑定this,不存在 指向 window
//@param thisArg — An object to which the this keyword can refer inside the new function.
// 在apply(),call(),bind()中this绑定值如果是 null 或 undefined 时 ,this 指向 window,
thisArg = (thisArg !== null && thisArg !== undefined) ? Object(thisArg) : window;
// 赋值
thisArg.fn = fn;
// 3.保存结果,输出结果
var result = thisArg.fn(...argArray);
// 4.删除fn属性
delete thisArg.fn
return result
};
function foo(num1, num2) {
console.log(this)
return num1 + num2
}
var result = foo.hyApply('obj', [1, 2, 3]) // 隐式调用 this 指向 foo
console.log(result)
var result3 = foo.apply('obj', [1, 2, 3])
console.log(result3);
//输出结果值
// {[String: 'obj'] fn: [Function: foo]}
// 3
// [String: 'obj']
// 3
js 实现 apply()
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1, 首先call()、apply()、bind() 都是用来重定义 this 这个对象的 例子1: <!DOCT...
- 1 call和apply是怎样使用的?call函数接收多个参数,第一个参数是this的指向,之后的参数都是函数的参...
- 之前写过两篇《面试官问:能否模拟实现JS的new操作符》和《面试官问:能否模拟实现JS的bind方法》 其中模拟b...