JavaScript中的call()
和apply()
是两个常用的方法,它们用于在调用函数时指定函数内部的this
值,并且还可以传入参数。这两个方法有着相似的作用,但也有一些区别。本文将详细介绍它们的作用与区别,并提供相关代码示例。
在JavaScript中,call()
和apply()
都是用于在特定的作用域中调用函数。它们的作用是改变函数体内this
的指向,并且可以传入参数。接下来我们将分别介绍它们的具体作用以及区别,并通过代码示例进行说明。
call()和apply()都是用于调用函数的方法,它们各自有一些优缺点。
call()的优点:
call()的缺点:
apply()的优点:
apply()的缺点:
总的来说,call()和apply()各有其适用的场景,选择使用哪种方法取决于具体的需求和代码结构。
call()
方法允许您在调用函数时,将一个对象绑定到this
,并且可以传入多个参数。这样就可以在调用函数时指定函数内部的this
值,并且传入相应的参数。下面是一个简单的示例:
function greet(name) {
return "Hello, " + name;
}
console.log(greet.call(null, "Alice"));
在上面的示例中,我们使用call()
方法将null
绑定到this
,并传入参数"Alice"。这样在调用greet
函数时,函数内部的this
会指向null
,并且会输出"Hello, Alice"。
apply()
方法与call()
类似,它也可以改变函数体内this
的指向,并且可以传入参数。不同的是,apply()
接受的参数是以数组的形式传入的。下面是一个示例:
function sum(a, b) {
return a + b;
}
console.log(sum.apply(null, [3, 5]));
在上面的示例中,我们使用apply()
方法将null
绑定到this
,并传入参数[3, 5]
。这样在调用sum
函数时,函数内部的this
会指向null
,并且会输出8。
var name = "Evan";
var age = 20;
var person = {
name: "Hillary",
age: 19,
sayIntroduce: function () {
return (
"Hello, My name is " + this.name +" and I'm " +this.age +" years old."
);
},
sayHobby: function (val1, val2) {
return "I'm " + this.name + ", I like " + val1 + " and " + val2 + ".";
}
};
var person1 = {
name: "Coy",
};
console.log(person.sayIntroduce());
// Hello, My name is Hillary and I'm 19 years old.
// 当我们通过 call 和 apply 来this的指向时,不传任何参数,则默认为将this指向修改为 windows
console.log(person.sayIntroduce.call());
// Hello, My name is Evan and I'm 20 years old.
console.log(person.sayIntroduce.apply());
// Hello, My name is Evan and I'm 20 years old.
// 有参数时,this 指向第一个参数:将this指向 person1,由于person1中没有age属性,因此为 undefined
console.log(person.sayIntroduce.call(person1));
// Hello, My name is Coy and I'm undefined years old.
console.log(person.sayIntroduce.apply(person1));
// Hello, My name is Coy and I'm undefined years old.
// 当需要传递参数时,call可以直接写多个参数,apply需要用数组方式传递:
console.log(person.sayHobby.call(person1, 'swimming', 'hiking'));
// I'm Coy, I like swimming and hiking.
console.log(person.sayHobby.apply(person1, ['swimming', 'hiking']));
// I'm Coy, I like swimming and hiking.
call()和apply()都是用来调用函数的方法,它们的作用是改变函数执行时的上下文(即this指向)和传递参数。
call()方法接收函数的上下文和参数列表作为参数,而apply()方法接收函数的上下文和一个参数数组作为参数。
call()和apply()的主要区别在于参数的传递方式,call()需要将参数逐个传入,而apply()可以接收一个参数数组。
他们的区别在于接收参数的方式不同: call():第一个参数是this值没有变化,变化的是其余参数都直接传递给函数。在使用call()方法时,传递给函数的参数必须逐个列举出来。 apply():传递给函数的是参数数组
总之,call()
和apply()
是非常有用的方法,它们可以在调用函数时灵活地指定this
的指向,并且传入相应的参数。在实际开发中,根据具体的需求选择使用call()
或apply()
可以帮助我们更好地编写出清晰、灵活的代码。