call、apply和bind

文章介绍了JavaScript中的call、apply和bind方法,它们用于修改函数执行时的this值。call和apply直接执行并传入参数,call接受参数列表,apply接受数组;而bind返回一个新的函数,预设参数,供后续调用时使用。
摘要由CSDN通过智能技术生成

call、apply和bind都是用来修改this值的方法

call

function.call(thisArg, arg1, arg2, ...)
  • thisArg:被调用函数执行时的上下文,即函数中的 this 值。
  • arg1, arg2, …:被调用函数的参数列表。
    例:
function sayHello(greeting) {
  console.log(greeting + ' ' + this.name);
}

const person = { name: 'John' };

// 使用 call 来调用函数并指定上下文
sayHello.call(person, 'Hello'); // 输出 "Hello John"

apply

function.apply(thisArg, [argsArray])
  • thisArg:被调用函数执行时的上下文,即函数中的 this 值。
  • argsArray:一个数组或类数组对象,其中包含被调用函数的参数。
    例:
function sayHello(greeting) {
  console.log(greeting + ' ' + this.name);
}

const person = { name: 'John' };

// 使用 apply 来调用函数并传递参数数组
sayHello.apply(person, ['Hello']); // 输出 "Hello John"

bind

function.bind(thisArg, arg1, arg2, ...)
  • thisArg:被返回函数执行时的上下文,即函数中的 this 值。
  • arg1, arg2, …:被返回函数的预设参数。当最终调用返回的函数时,这些参数会与调用时传递的参数合并。
    例:
function sayHello(greeting) {
  console.log(greeting + ' ' + this.name);
}

const person = { name: 'John' };

// 使用 bind 创建一个新的函数,并稍后调用
const sayHelloToJohn = sayHello.bind(person);
sayHelloToJohn('Hello'); // 输出 "Hello John"

总结:

  • call 和 apply 都是立即调用函数,只是传递参数的方式不同,call是参数列表,apply是数组。
  • bind 返回一个新的函数,不会立即执行,可以稍后调用。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值