91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

ProxyVue與Vue Object.defineProperty實現雙向數據綁定的方法

發布時間:2020-11-05 16:21:38 來源:億速云 閱讀:172 作者:Leah 欄目:開發技術

ProxyVue與Vue Object.defineProperty實現雙向數據綁定的方法?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

雙向數據綁定無非就是,視圖 => 數據,數據 => 視圖的更新過程

ProxyVue與Vue Object.defineProperty實現雙向數據綁定的方法

以下的方案中的實現思路:

  • 定義一個Vue的構造函數并初始化這個函數(myVue.prototype._init)
  • 實現數據層的更新:數據劫持,定義一個 obverse 函數重寫data的set和get(myVue.prototype._obsever)
  • 實現視圖層的更新:訂閱者模式,定義個 Watcher 函數實現對DOM的更新(Watcher)
  • 將數據和視圖層進行綁定,解析指令v-bind、v-model、v-click(myVue.prototype._compile)
  • 創建Vue實例(new myVue)
     

1.object.defineproperty方式實現雙向數據綁定

<!DOCTYPE html>
<html>
 
<head>
 <title>myVue</title>
 <style>
  #app{
  text-align: center;
 }
</style>
</head>
 
<body>
 <div id="app">
  <form>
   <input type="text" v-model="number" />
   <button type="button" v-click="increment">增加</button>
  </form>
  <h4 v-bind="number"></h4>
 </div>
</body>
<script>
 
 // 定義一個myVue構造函數
 function myVue(option) {
  this._init(option)
 }
 
 myVue.prototype._init = function (options) { // 傳了一個配置對象
  this.$options = options // options 為上面使用時傳入的結構體,包括el,data,methods
  this.$el = document.querySelector(options.el) // el是 #app, this.$el是id為app的Element元素
  this.$data = options.data // this.$data = {number: 0}
  this.$methods = options.methods // this.$methods = {increment: function(){}}
 
 
  // _binding保存著model與view的映射關系,也就是我們前面定義的Watcher的實例。當model改變時,我們會觸發其中的指令類更新,保證view也能實時更新
  this._binding = {}
 
  this._obsever(this.$data)
  this._compile(this.$el)
 }
 
 // 數據劫持:更新數據
 myVue.prototype._obsever = function (obj) {
  let _this = this
  Object.keys(obj).forEach((key) => { // 遍歷obj對象
   if (obj.hasOwnProperty(key)) { // 判斷 obj 對象是否包含 key屬性
    _this._binding[key] = [] // 按照前面的數據,_binding = {number: []} 存儲 每一個 new Watcher
   }
   let value = obj[key]
   if (typeof value === 'object') { //如果值還是對象,則遍歷處理
    _this._obsever(value)
   }
   Object.defineProperty(_this.$data, key, {
    enumerable: true,
    configurable: true,
    get: () => { // 獲取 value 值
     return value
    },
    set: (newVal) => { // 更新 value 值
     if (value !== newVal) {
      value = newVal
      _this._binding[key].forEach((item) => { // 當number改變時,觸發_binding[number] 中的綁定的Watcher類的更新
       item.update() // 調 Watcher 實例的 update 方法更新 DOM
      })
     }
    }
   })
  })
 }
 
 // 訂閱者模式: 綁定更新函數,實現對 DOM 元素的更新
 function Watcher(el, data, key, attr) {
  this.el = el // 指令對應的DOM元素
  this.data = data // this.$data 數據: {number: 0, count: 0}
  this.key = key // 指令綁定的值,本例如"number"
  this.attr = attr // 綁定的屬性值,本例為"innerHTML","value"
 
  this.update()
 }
 // 比如 H3.innerHTML = this.data.number; 當number改變時,會觸發這個update函數,保證對應的DOM內容進行了更新
 Watcher.prototype.update = function () {
  this.el[this.attr] = this.data[this.key]
 }
 
 // 將view與model進行綁定,解析指令(v-bind,v-model,v-clickde)等
 myVue.prototype._compile = function (el) { // root 為id為app的Element元素,也就是我們的根元素
  let _this = this
  let nodes = Array.prototype.slice.call(el.children) // 將為數組轉化為真正的數組
  nodes.map(node => {
   if (node.children.length && node.children.length > 0) { // 對所有元素進行遍歷,并進行處理
    _this._compile(node)
   }
   if (node.hasAttribute('v-click')) { // 如果有v-click屬性,我們監聽它的onclick事件,觸發increment事件,即number++
    let attrVal = node.getAttribute('v-click')
    node.onclick = _this.$methods[attrVal].bind(_this.$data) // bind是使data的作用域與method函數的作用域保持一致
   }
 
   // 如果有v-model屬性,并且元素是INPUT或者TEXTAREA,我們監聽它的input事件
   if (node.hasAttribute('v-model') && (node.tagName === 'INPUT' || node.tagName === 'TEXTAREA')) {
    let attrVal = node.getAttribute('v-model')
 
    _this._binding[attrVal].push(new Watcher(
     node, // 對應的 DOM 節點
     _this.$data,
     attrVal, // v-model 綁定的值
     'value'
    ))
    node.addEventListener('input', () => {
     _this.$data[attrVal] = node.value // 使number 的值與 node的value保持一致,已經實現了雙向綁定
    })
   }
   if (node.hasAttribute('v-bind')) {
    let attrVal = node.getAttribute('v-bind')
    _this._binding[attrVal].push(new Watcher(
     node,
     _this.$data,
     attrVal, // v-bind 綁定的值
     'innerHTML'
    ))
   }
  })
 }
 
 
 window.onload = () => { // 當文檔內容完全加載完成會觸發該事件,避免獲取不到對象的情況
  new myVue({
   el: '#app',
   data: {
    number: 0,
    count: 0
   },
   methods: {
    increment() {
     this.number++
    },
    incre() {
     this.count++
    }
   }
  })
 }
</script>
 
</html>

2.Proxy 實現雙向數據綁定

<!DOCTYPE html>
<html>
 
<head>
 <title>myVue</title>
 <style>
  #app{
  text-align: center;
 }
</style>
</head>
 
<body>
 <div id="app">
  <form>
   <input type="text" v-model="number" />
   <button type="button" v-click="increment">增加</button>
  </form>
  <h4 v-bind="number"></h4>
 </div>
</body>
<script>
 
 // 定義一個myVue構造函數
 function myVue(option) {
  this._init(option)
 }
 
 myVue.prototype._init = function (options) { // 傳了一個配置對象
  this.$options = options // options 為上面使用時傳入的結構體,包括el,data,methods
  this.$el = document.querySelector(options.el) // el是 #app, this.$el是id為app的Element元素
  this.$data = options.data // this.$data = {number: 0}
  this.$methods = options.methods // this.$methods = {increment: function(){}}
 
  this._binding = {}
  this._obsever(this.$data)
  this._complie(this.$el)
 
 }
 
// 數據劫持:更新數據
myVue.prototype._obsever = function (data) {
  let _this = this
  let handler = {
   get(target, key) {
    return target[key]; // 獲取該對象上key的值
   },
   set(target, key, newValue) {
    let res = Reflect.set(target, key, newValue); // 將新值分配給屬性的函數
    _this._binding[key].map(item => {
     item.update();
    });
    return res;
   }
  };
  // 把代理器返回的對象代理到this.$data,即this.$data是代理后的對象,外部每次對this.$data進行操作時,實際上執行的是這段代碼里handler對象上的方法
  this.$data = new Proxy(data, handler);
 }
 
 // 將view與model進行綁定,解析指令(v-bind,v-model,v-clickde)等
 myVue.prototype._complie = function (el) { // el 為id為app的Element元素,也就是我們的根元素
  let _this = this
  let nodes = Array.prototype.slice.call(el.children) // 將為數組轉化為真正的數組
 
  nodes.map(node => {
   if (node.children.length && node.children.length > 0) this._complie(node)
   if (node.hasAttribute('v-click')) { // 如果有v-click屬性,我們監聽它的onclick事件,觸發increment事件,即number++
    let attrVal = node.getAttribute('v-click')
    node.onclick = _this.$methods[attrVal].bind(_this.$data) // bind是使data的作用域與method函數的作用域保持一致
   }
 
   // 如果有v-model屬性,并且元素是INPUT或者TEXTAREA,我們監聽它的input事件
   if (node.hasAttribute('v-model') && (node.tagName === 'INPUT' || node.tagName === 'TEXTAREA')) {
    let attrVal = node.getAttribute('v-model')
    
    console.log(_this._binding)
    if (!_this._binding[attrVal]) _this._binding[attrVal] = []
    _this._binding[attrVal].push(new Watcher(
     node, // 對應的 DOM 節點
     _this.$data,
     attrVal, // v-model 綁定的值
     'value',
    ))
    node.addEventListener('input', () => {
     _this.$data[attrVal] = node.value // 使number 的值與 node的value保持一致,已經實現了雙向綁定
    })
   }
   if (node.hasAttribute('v-bind')) {
    let attrVal = node.getAttribute('v-bind')
    if (!_this._binding[attrVal]) _this._binding[attrVal] = []
    _this._binding[attrVal].push(new Watcher(
     node,
     _this.$data,
     attrVal, // v-bind 綁定的值
     'innerHTML',
    ))
   }
 
  })
 }
 // 綁定更新函數,實現對 DOM 元素的更新
 function Watcher(el, data, key, attr) {
  this.el = el // 指令對應的DOM元素
  this.data = data // 代理的對象 this.$data 數據: {number: 0, count: 0}
  this.key = key // 指令綁定的值,本例如"num"
  this.attr = attr // 綁定的屬性值,本例為"innerHTML","value"
 
  this.update()
 }
 // 比如 H3.innerHTML = this.data.number; 當number改變時,會觸發這個update函數,保證對應的DOM內容進行了更新
 Watcher.prototype.update = function () {
  this.el[this.attr] = this.data[this.key]
 }
 
 window.onload = () => { // 當文檔內容完全加載完成會觸發該事件,避免獲取不到對象的情況
  new myVue({
   el: '#app',
   data: {
    number: 0,
    count: 0
   },
   methods: {
    increment() {
     this.number++
    },
    incre() {
     this.count++
    }
   }
  })
 }
</script>
 
</html>

3.將上面代碼改成class的寫法

<!DOCTYPE html>
<html>
 
<head>
 <title>myVue</title>
 <style>
  #app{
  text-align: center;
 }
</style>
</head>
 
<body>
 <div id="app">
  <form>
   <input type="text" v-model="number" />
   <button type="button" v-click="increment">增加</button>
  </form>
  <h4 v-bind="number"></h4>
 </div>
</body>
<script>
 
 class MyVue {
  constructor(options) { // 接收了一個配置對象
   this.$options = options // options 為上面使用時傳入的結構體,包括el,data,methods
   this.$el = document.querySelector(options.el) // el是 #app, this.$el是id為app的Element元素
   this.$data = options.data // this.$data = {number: 0}
   this.$methods = options.methods // this.$methods = {increment: function(){}}
 
   this._binding = {}
   this._obsever(this.$data)
   this._complie(this.$el)
  }
  _obsever (data) { // 數據劫持:更新數據
   let _this = this
   let handler = {
    get(target, key) {
     return target[key]; // 獲取該對象上key的值
    },
    set(target, key, newValue) {
     let res = Reflect.set(target, key, newValue); // 將新值分配給屬性的函數
     _this._binding[key].map(item => {
      item.update();
     });
     return res;
    }
   };
   // 把代理器返回的對象代理到this.$data,即this.$data是代理后的對象,外部每次對this.$data進行操作時,實際上執行的是這段代碼里handler對象上的方法
   this.$data = new Proxy(data, handler);
  }
  _complie(el) { // el 為id為app的Element元素,也就是我們的根元素
   let _this = this
   let nodes = Array.prototype.slice.call(el.children) // 將為數組轉化為真正的數組
 
   nodes.map(node => {
    if (node.children.length && node.children.length > 0) this._complie(node)
    if (node.hasAttribute('v-click')) { // 如果有v-click屬性,我們監聽它的onclick事件,觸發increment事件,即number++
     let attrVal = node.getAttribute('v-click')
     node.onclick = _this.$methods[attrVal].bind(_this.$data) // bind是使data的作用域與method函數的作用域保持一致
    }
 
    // 如果有v-model屬性,并且元素是INPUT或者TEXTAREA,我們監聽它的input事件
    if (node.hasAttribute('v-model') && (node.tagName === 'INPUT' || node.tagName === 'TEXTAREA')) {
     let attrVal = node.getAttribute('v-model')
     if (!_this._binding[attrVal]) _this._binding[attrVal] = []
     _this._binding[attrVal].push(new Watcher(
      node, // 對應的 DOM 節點
      _this.$data,
      attrVal, // v-model 綁定的值
      'value',
     ))
     node.addEventListener('input', () => {
      _this.$data[attrVal] = node.value // 使number 的值與 node的value保持一致,已經實現了雙向綁定
     })
    }
    if (node.hasAttribute('v-bind')) {
     let attrVal = node.getAttribute('v-bind')
     if (!_this._binding[attrVal]) _this._binding[attrVal] = []
     _this._binding[attrVal].push(new Watcher(
      node,
      _this.$data,
      attrVal, // v-bind 綁定的值
      'innerHTML',
     ))
    }
 
   })
  }
 }
 
 class Watcher {
  constructor (el, data, key, attr) {
   this.el = el // 指令對應的DOM元素
   this.data = data // 代理的對象 this.$data 數據: {number: 0, count: 0}
   this.key = key // 指令綁定的值,本例如"num"
   this.attr = attr // 綁定的屬性值,本例為"innerHTML","value"
   this.update()
  }
 
  update () {
   this.el[this.attr] = this.data[this.key]
  }
 }
 
 
 
 window.onload = () => { // 當文檔內容完全加載完成會觸發該事件,避免獲取不到對象的情況
  new MyVue({
   el: '#app',
   data: {
    number: 0,
    count: 0
   },
   methods: {
    increment() {
     this.number++
    },
    incre() {
     this.count++
    }
   }
  })
 }
</script>
 
</html>

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

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

AI

根河市| 九龙城区| 康平县| 周至县| 凌源市| 绥滨县| 龙海市| 绥化市| 光泽县| 耒阳市| 静宁县| 渭源县| 济南市| 高邮市| 富源县| 拉孜县| 永吉县| 田林县| 宜黄县| 南宫市| 东方市| 东明县| 治多县| 丰镇市| 广昌县| 恩平市| 台中县| 元氏县| 三门县| 莱西市| 星子县| 岳西县| 嘉善县| 左权县| 荃湾区| 色达县| 蚌埠市| 鹿泉市| 绵阳市| 邹城市| 遂昌县|