call, apply, bind 区别
2020年2月15日
js中的call(), apply()和bind()是Function.prototype下的方法,都是用于改变函数运行时上下文,最终的返回值是你调用的方法的返回值,若该方法没有返回值,则返回undefined。
apply() 和 call()
- 使用
apply
, 你可以继承其他对象的方法: 注意这里apply()
的第一个参数是null
,在非严格模式下,第一个参数为null
或者undefined
时会自动替换为指向全局对象window
,apply()
的第二个参数为数组或类数组。 call()
作用和apply()
一样,同样可实现继承,唯一的区别就在于call()
接收的是参数列表,而apply()
则接收参数数组。
let m1 = Math.max.apply(null, [1, 2, 3, 4, 5])
let m2 = Math.max.call(null, 1, 2, 3, 4, 5)
console.log(m1) // 5
console.log(m2) // 5
let a = {
value: 1
}
function getValue(name, age) {
console.log(name)
console.log(age)
console.log(this.value)
}
getValue.call(a, 'mo', '24')
getValue.apply(a, ['mo', '24'])
模拟实现 call 和 apply
可以从以下几点来考虑如何实现
- 不传入第一个参数,那么默认为
window
- 改变了
this
指向,让新的对象可以执行该函数。那么思路是否可以变成给新的对象添加一个函数,然后在执行完以后删除?
- call
Function.prototype.myCall = function (context) {
var context = context || window
// 给 context 添加一个属性
// getValue.call(a, 'yck', '24') => a.fn = getValue
context.fn = this
// 将 context 后面的参数取出来
var args = [...arguments].slice(1)
// getValue.call(a, 'yck', '24') => a.fn('yck', '24')
var result = context.fn(...args)
// 删除 fn
delete context.fn
return result
}
- apply
Function.prototype.myApply = function (context) {
var context = context || window
context.fn = this
var result
// 需要判断是否存储第二个参数
// 如果存在,就将第二个参数展开
if (arguments[1]) {
result = context.fn(...arguments[1])
} else {
result = context.fn()
}
delete context.fn
return result
}
bind
bind()的作用与call()和apply()一样,都是可以改变函数运行时上下文,区别是call()和apply()在调用函数之后会立即执行,而bind()方法调用并改变函数运行时上下文后,返回一个新的函数,供我们需要时再调用。
var person = {
name: 'person',
getName:function(){
return this.name
}
}
var boy = {
name : 'mo'
}
let getName = person.getName.bind(boy)
console.log(getName())
模拟bind()
Function.prototype.myBind = function (context) {
if (typeof this !== 'function') {
throw new TypeError('Error')
}
var _this = this
var args = [...arguments].slice(1)
// 返回一个函数
return function F() {
// 因为返回了一个函数,我们可以 new F(),所以需要判断
if (this instanceof F) {
return new _this(...args, ...arguments)
}
return _this.apply(context, args.concat(...arguments))
}
}