최근 자바스크립트에서 call() 메소드와 apply() 메소드를 접했는데, 어느 순간 이 두 메소드가 정말 중요하기 때문에 이 두 메소드의 사용법과 차이점을 정리해보겠습니다.
각 함수에는 상속되지 않은 두 가지 메서드인 call() 메서드와 apply() 메서드가 포함되어 있습니다.
유사점: 이 두 가지 방법은 동일한 효과를 갖습니다.
특정 범위에서 함수를 호출하는 것은 함수 본문에서 이 개체의 값을 설정하여 함수가 실행되는 범위를 확장하는 것과 같습니다.
일반적으로 이것은 항상 특정 메소드를 호출하는 객체를 가리키지만, call() 및 apply() 메소드를 사용하면 이것의 포인트가 변경됩니다.
call()
메소드 사용 예: call()
方法使用示例:
//例1 <script> window.color = 'red'; document.color = 'yellow'; var s1 = {color: 'blue' }; function changeColor(){ console.log(this.color); } changeColor.call(); //red (默认传递参数) changeColor.call(window); //red changeColor.call(document); //yellow changeColor.call(this); //red changeColor.call(s1); //blue </script> //例2 var Pet = { words : '...', speak : function (say) { console.log(say + ''+ this.words) } } Pet.speak('Speak'); // 结果:Speak... var Dog = { words:'Wang' } //将this的指向改变成了Dog Pet.speak.call(Dog, 'Speak'); //结果: SpeakWang
apply()
//例1 <script> window.number = 'one'; document.number = 'two'; var s1 = {number: 'three' }; function changeColor(){ console.log(this.number); } changeColor.apply(); //one (默认传参) changeColor.apply(window); //one changeColor.apply(document); //two changeColor.apply(this); //one changeColor.apply(s1); //three </script> //例2 function Pet(words){ this.words = words; this.speak = function () { console.log( this.words) } } function Dog(words){ //Pet.call(this, words); //结果: Wang Pet.apply(this, arguments); //结果: Wang } var dog = new Dog('Wang'); dog.speak();
apply()
메소드 사용 예: function add(c,d){ return this.a + this.b + c + d; } var s = {a:1, b:2}; console.log(add.call(s,3,4)); // 1+2+3+4 = 10 console.log(add.apply(s,[5,6])); // 1+2+5+6 = 14
apply() 메서드는 두 개의 매개변수를 받습니다. 하나는 함수가 실행되는 범위(this)이고 다른 하나는 매개변수 배열입니다.
구문: apply([thisObj [,argArray] ]);, 개체의 메서드를 호출하고 현재 개체를 다른 개체로 바꿉니다.
참고: argArray가 유효한 배열이 아니거나 인수 개체가 아니면
TypeError가 발생합니다. argArray나 thisObj가 모두 제공되지 않으면 전역 개체가 thisObj로 사용됩니다.
call() 메소드 첫 번째 매개변수는 apply() 메소드와 동일하지만, 함수에 전달된 매개변수가 나열되어야 합니다.
구문: call([thisObject[,arg1 [,arg2 [,...,argn]]]]);, 특정 개체의 메서드를 적용하고 현재 개체를 다른 개체로 바꿉니다.
설명: call 메서드를 사용하면 다른 개체 대신 메서드를 호출할 수 있습니다. thisObj 매개변수가 제공되지 않으면 call 메서드는 함수의 개체 컨텍스트를 초기 컨텍스트에서 새 개체로 변경할 수 있습니다. , Global 객체는 thisObj에서 사용됩니다.
<script> window.firstName = "Cynthia"; window.lastName = "_xie"; var myObject = {firstName:'my', lastName:'Object'}; function getName(){ console.log(this.firstName + this.lastName); } function getMessage(sex,age){ console.log(this.firstName + this.lastName + " 性别: " + sex + " age: " + age ); } getName.call(window); // Cynthia_xie getName.call(myObject); // myObject getName.apply(window); // Cynthia_xie getName.apply(myObject);// myObject getMessage.call(window,"女",21); //Cynthia_xie 性别: 女 age: 21 getMessage.apply(window,["女",21]); // Cynthia_xie 性别: 女 age: 21 getMessage.call(myObject,"未知",22); //myObject 性别: 未知 age: 22 getMessage.apply(myObject,["未知",22]); // myObject 性别: 未知 age: 22 </script>
rrreee
위는 이 글의 전체 내용입니다. 모든 분들의 학습에 도움이 되기를 바랍니다.🎜관련 학습 권장사항: javascript 비디오 튜토리얼
위 내용은 JS call() 및 apply() 메소드 사용 예시 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!