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); } }