中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js中的call、bind、instanceof實現示例

發布時間:2020-04-27 09:49:20 來源:億速云 閱讀:967 作者:小新 欄目:web開發

js中call能夠改變this的指向、bind能改變this的指向,并返回一個函數,這是怎么實現的呢?本文將帶你一步步實現這些功能,希望對學習JavaScript的朋友有幫助。

js中的call、bind、instanceof實現示例

前言

現在的前端門檻越來越高,不再是只會寫寫頁面那么簡單。模塊化、自動化、跨端開發等逐漸成為要求,但是這些都需要建立在我們牢固的基礎之上。不管框架和模式怎么變,把基礎原理打牢才能快速適應市場的變化。下面介紹一些常用的源碼實現:

call實現

bind實現

new實現

instanceof實現

Object.create實現

深拷貝實現

發布訂閱模式

call

call用于改變函數this指向,并執行函數

一般情況,誰調用函數,函數的this就指向誰。利用這一特點,將函數作為對象的屬性,由對象進行調用,即可改變函數this指向,這種被稱為隱式綁定。apply實現同理,只需改變入參形式。

let obj = {
  name: 'JoJo'
}
function foo(){
  console.log(this.name)
}
obj.fn = foo
obj.fn() // log: JOJO

實現

Function.prototype.mycall = function () {
  if(typeof this !== 'function'){
    throw 'caller must be a function'
  }
  let othis = arguments[0] || window
  othis._fn = this
  let arg = [...arguments].slice(1)
  let res = othis._fn(...arg)
  Reflect.deleteProperty(othis, '_fn') //刪除_fn屬性
  return res
}

使用

let obj = {
  name: 'JoJo'
}
function foo(){
  console.log(this.name)
}
foo.mycall(obj) // JoJo

bind

bind用于改變函數this指向,并返回一個函數

注意點:

作為構造函數調用的this指向

維護原型鏈

Function.prototype.mybind = function (oThis) {
  if(typeof this != 'function'){
    throw 'caller must be a function'
  }
  let fThis = this
  //Array.prototype.slice.call 將類數組轉為數組
  let arg = Array.prototype.slice.call(arguments,1)
  let NOP = function(){}
  let fBound = function(){
    let arg_ = Array.prototype.slice.call(arguments)
    // new 綁定等級高于顯式綁定
    // 作為構造函數調用時,保留指向不做修改
    // 使用 instanceof 判斷是否為構造函數調用
    return fThis.apply(this instanceof fBound ? this : oThis, arg.concat(arg_))
  }
  // 維護原型
  if(this.prototype){
    NOP.prototype = this.prototype
  }
  fBound.prototype = new NOP()
  return fBound
}

使用

let obj = {
  msg: 'JoJo'
}
function foo(msg){
  console.log(msg + '' + this.msg)
}
let f = foo.mybind(obj)
f('hello') // hello JoJo

new

new使用構造函數創建實例對象,為實例對象添加this屬性和方法

new的過程:

創建新對象

新對象__proto__指向構造函數原型

新對象添加屬性方法(this指向)

返回this指向的新對象

function new_(){
  let fn = Array.prototype.shift.call(arguments)
  if(typeof fn != 'function'){
    throw fn + ' is not a constructor'
  }
  let obj = {}
  obj.__proto__ = fn.prototype
  let res = fn.apply(obj, arguments)
  return typeof res === 'object' ? res : obj
}

instanceof

instanceof 判斷左邊的原型是否存在于右邊的原型鏈中。

實現思路:逐層往上查找原型,如果最終的原型為null時,證明不存在原型鏈中,否則存在。

function instanceof_(left, right){
  left = left.__proto__
  while(left !== right.prototype){
    left = left.__proto__ // 查找原型,再次while判斷
    if(left === null){
      return false
    }
  }
  return true
}

Object.create

Object.create創建一個新對象,使用現有的對象來提供新創建的對象的__proto__,第二個可選參數為屬性描述對象

function objectCreate_(proto, propertiesObject = {}){
  if(typeof proto !== 'object' || typeof proto !== 'function' || proto !== null){
    throw('Object prototype may only be an Object or null:'+proto)
  }
  let res = {}
  res.__proto__ = proto
  Object.defineProperties(res, propertiesObject)
  return res
}

深拷貝

深拷貝為對象創建一個相同的副本,兩者的引用地址不相同。當你希望使用一個對象,但又不想修改原對象時,深拷貝是一個很好的選擇。這里實現一個基礎版本,只對對象和數組做深拷貝。

實現思路:遍歷對象,引用類型使用遞歸繼續拷貝,基本類型直接賦值

function deepClone(origin) {
  let toStr = Object.prototype.toString
  let isInvalid = toStr.call(origin) !== '[object Object]' && toStr.call(origin) !== '[object Array]'
  if (isInvalid) {
    return origin
  }
  let target = toStr.call(origin) === '[object Object]' ? {} : []
  for (const key in origin) {
    if (origin.hasOwnProperty(key)) {
      const item = origin[key];
      if (typeof item === 'object' && item !== null) {
        target[key] = deepClone(item)
      } else {
        target[key] = item
      }
    }
  }
  return target
}

發布訂閱模式

發布訂閱模式在實際開發中可以實現模塊間的完全解耦,模塊只需要關注事件的注冊和觸發。

發布訂閱模式實現EventBus:

class EventBus{
  constructor(){
    this.task = {}
  }

  on(name, cb){
    if(!this.task[name]){
      this.task[name] = []
    }
    typeof cb === 'function' && this.task[name].push(cb)
  }

  emit(name, ...arg){
    let taskQueen = this.task[name]
    if(taskQueen && taskQueen.length > 0){
      taskQueen.forEach(cb=>{
        cb(...arg)
      })
    }
  }

  off(name, cb){
    let taskQueen = this.task[name]
    if(taskQueen && taskQueen.length > 0){
      let index = taskQueen.indexOf(cb)
      index != -1 && taskQueen.splice(index, 1)
    }
  }

  once(name, cb){
    function callback(...arg){
      this.off(name, cb)
      cb(...arg)
    }
    typeof cb === 'function' && this.on(name, callback)
  }
}

使用

let bus = new EventBus()
bus.on('add', function(a,b){
  console.log(a+b)
})
bus.emit('add', 10, 20) //30

關于js中的call、bind、instanceof實現示例就分享到這里了,希望以上內容可以對大家有一定的參考價值,可以學以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

合水县| 阜新市| 简阳市| 兴宁市| 绥滨县| 宁安市| 长海县| 固镇县| 垣曲县| 西安市| 大田县| 新巴尔虎左旗| 吉安市| 康平县| 钟山县| 营口市| 凤庆县| 江源县| 江陵县| 伊宁市| 通化市| 青州市| 浠水县| 吴堡县| 伊吾县| 山阳县| 略阳县| 陆良县| 红原县| 旌德县| 怀宁县| 颍上县| 伊宁市| 仁寿县| 邵武市| 辽宁省| 科尔| 邛崃市| 徐汇区| 威宁| 彭山县|