<em id="09ttv"></em>
    <sup id="09ttv"><pre id="09ttv"></pre></sup>
    <dd id="09ttv"></dd>

        • call、apply、bind 原理實現

          2020-4-6    seo達人

          目錄

          1. call 的模擬實現
          2. apply 的模擬實現
          3. bind 的模擬實現
          4. 三者異同



            學習并參考于:



            JavaScript深入之call和apply的模擬實現



            JS的call,apply與bind詳解,及其模擬實現





            (一)call的模擬實現

            call 用法 : MDN Function.prototype.call()



            call() 方法使用一個指定的 this 值和可選的參數列表來調用一個函數。



            call() 提供新的 this 值給當前調用的函數/方法。


          5. call 實現主要思路:

            將函數設為對象的屬性



            執行該函數



            刪除該函數



            另外還有考慮:



            call 函數還能給定參數執行函數

            this 參數不傳,或者傳null,undefined, this指向window對象

            函數是可以有返回值的
          6. 實現:

            Function.prototype.myCall = function () {

              if (typeof this !== 'function') {

                throw new TypeError('error!')

              }

              let context = arguments[0] || window   //this 參數可以傳 null,當為 null 的時候,視為指向 window

              context.fn = this  // 首先要獲取調用call的函數,用this可以獲取

              let args = [...arguments].slice(1) //從 Arguments 對象中取值,取出第二個到最后一個參數   

              let result = context.fn(...args)  //函數是可以有返回值的

              delete context.fn

              return result

            }


          7. 測試:

            // 測試一下上面實現的myCall

            var value = 2;



            var obj = {

                value: 1

            }



            function bar(name, age) {

                console.log(this.value);

                return {

                    value: this.value,

                    name: name,

                    age: age

                }

            }



            bar.call(null); // 2



            console.log(bar.myCall(obj, 'kevin', 18));

            // 1

            // Object {

            //    value: 1,

            //    name: 'kevin',

            //    age: 18

            // }



            (二)apply 的模擬實現

            apply 用法:MDN Function.prototype.apply()



            apply() 方法使用一個指定的 this 值和可選的參數數組 來調用一個函數。



            apply 的實現跟 call 類似。


          8. 實現:

            Function.prototype.myApply = function () {

              if (typeof this !== 'function') {

                throw new TypeError('error!')

              }

              let context = arguments[0] || window

              context.fn = this

              let result = arguments[1] ? context.fn(...arguments[1]) : context.fn()

              delete context.fn

              return result

            }


          9. 測試:

            var foo = {

                value: 1

            }

            function bar(name, age) {

                console.log(name)

                console.log(age)

                console.log(this.value);

            }

            bar.myApply(foo, ['black', '18']) // black 18 1



            (三)bind 的模擬實現

            bind 用法:MDN Function.prototype.bind()



            bind()方法會創建一個新函數,稱為綁定函數。當這個新函數被調用時,bind() 的第一個參數將作為它運行時的 this,之后的一序列參數將會在傳遞的實參前傳入作為它的參數。



            bind是ES5新增的一個方法,不會執行對應的函數,而是返回對綁定函數的引用。


          10. 實現:

            Function.prototype.customBind = function () {

              if (typeof this !== 'function') {

                throw new TypeError('error!')

              }

              const that = this   // 首先要獲取調用bind的函數,用this獲取并存放在that中

              let context = arguments[0] || window

              const args = [...arguments].slice(1)

              return function() {

                return that.apply(context, args.concat([...arguments]))

              }

            }



            (四)三者異同
          11. 相同:

            改變函數體內 this 的指向
          12. 不同:

            call、apply的區別:call方法接受的是參數列表,而apply方法接受的是一個參數數組。

            bind不立即執行。而call或apply會自動執行對應的函數。


          日歷

          鏈接

          個人資料

          藍藍設計的小編 http://www.sdgs6788.com

          存檔

          国产精品99久久精品| 久久精品国产亚洲av麻豆蜜芽 | 91久久精品国产成人久久| 香蕉久久一区二区不卡无毒影院| 日本精品久久久久中文字幕| 国产综合成人久久大片91| 精品国产青草久久久久福利| 亚洲中文字幕久久精品无码喷水| 人妻无码久久精品| 无码人妻少妇久久中文字幕蜜桃 | 久久人人超碰精品CAOPOREN| 中文国产成人精品久久不卡| 97久久综合精品久久久综合| 久久久久亚洲AV成人网人人软件| 国产免费久久久久久无码| 日本欧美久久久久免费播放网 | www性久久久com| 狠狠精品久久久无码中文字幕| 94久久国产乱子伦精品免费| 综合网日日天干夜夜久久| 国产精品青草久久久久福利99| 九九久久自然熟的香蕉图片| 久久影视综合亚洲| 91久久精品电影| 久久国产精品久久| 久久精品国产72国产精福利| 久久久久亚洲AV无码网站| 香蕉久久久久久狠狠色| 欧美性猛交xxxx免费看久久久| 久久国产成人精品麻豆| 中文字幕人妻色偷偷久久| 青青草国产97免久久费观看| 久久久精品国产Sm最大网站| 久久国产成人| 亚洲?V乱码久久精品蜜桃| 久久久久99精品成人片三人毛片 | 久久99国产精品二区不卡| 99久久成人国产精品免费| 国产精品久久波多野结衣| 久久精品人人做人人爽97| 九九久久99综合一区二区|