>  기사  >  웹 프론트엔드  >  javascript_javascript 스킬에서 커링 함수를 사용하여 바인드 메소드 구현

javascript_javascript 스킬에서 커링 함수를 사용하여 바인드 메소드 구현

WBOY
WBOY원래의
2016-05-16 15:03:091179검색

Ke Lihua의 함수 아이디어: 함수 실행 원리를 사용하여 파괴되지 않는 범위를 형성하고 사전 처리에 필요한 모든 콘텐츠를 저장하는 ​​​​js의 아이디어입니다. 이 비파괴 범위에서 처리되고 작은 함수를 반환합니다. 이제부터 작은 함수에서 이전에 저장된 값에 대해 관련 작업을 수행할 수 있습니다. 카레링 기능은 주로 전처리 역할을 합니다.

바인드 메소드의 역할: 컨텍스트 컨텍스트로 전달된 콜백 메소드에서 이를 전처리합니다.

/**
* bind方法实现原理1
* @param callback [Function] 回调函数
* @param context [Object] 上下文
* @returns {Function} 改变this指向的函数
*/
function bind(callback,context) {
 var outerArg = Array.prototype.slice.call(arguments,2);// 表示取当前作用域中传的参数中除了fn,context以外后面的参数;
 return function (){
  var innerArg = Array.prototype.slice.call(arguments,0);//表示取当前作用域中所有的arguments参数;
  callback.apply(context,outerArg.concat(innerArg));
 }
}

 /**
* 模仿在原型链上的bind实现原理(柯理化函数思想)
* @param context [Object] 上下文
* @returns {Function} 改变this指向的函数
*/
Function.prototype.mybind = function mybind (context) {
 var _this = this;
 var outArg = Array.prototype.slice.call(arguments,1);
 // 兼容情况下
 if('bind' in Function.prototype) {
  return this.bind.apply(this,[context].concat(outArg));
 }
 // 不兼容情况下
 return function () {
  var inArg = Array.prototype.slice.call(arguments,0);
  inArg.length === 0?inArg[inArg.length]=window.event:null;
  var arg = outArg.concat(inArg);
  _this.apply(context,arg);
 }
}
위 내용은 커링 함수를 사용하여 바인드 메소드를 구현하기 위한 관련 코드입니다. 자바스크립트 프로그래밍을 배우시는 모든 분들께 도움이 되었으면 좋겠습니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.