中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

Vue2.X和Vue3.0數(shù)據(jù)響應(yīng)的區(qū)別有哪些

本篇文章給大家分享的是有關(guān)Vue2.X和Vue3.0數(shù)據(jù)響應(yīng)的區(qū)別有哪些,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

“只有客戶發(fā)展了,才有我們的生存與發(fā)展!”這是成都創(chuàng)新互聯(lián)的服務(wù)宗旨!把網(wǎng)站當作互聯(lián)網(wǎng)產(chǎn)品,產(chǎn)品思維更注重全局思維、需求分析和迭代思維,在網(wǎng)站建設(shè)中就是為了建設(shè)一個不僅審美在線,而且實用性極高的網(wǎng)站。創(chuàng)新互聯(lián)對成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)、網(wǎng)站制作、網(wǎng)站開發(fā)、網(wǎng)頁設(shè)計、網(wǎng)站優(yōu)化、網(wǎng)絡(luò)推廣、探索永無止境。

defineProperty 定義對象的屬性,只不過屬性里的get和set實現(xiàn)了響應(yīng)式。

常用:

  • value屬性值

  • get

  • set

  • writeable 是否可寫

  • enumrable 可遍歷

Vue從改變一個數(shù)據(jù)到發(fā)生改變的過程

Vue2.X和Vue3.0數(shù)據(jù)響應(yīng)的區(qū)別有哪些

 Vue2.X數(shù)據(jù)響應(yīng)原理

創(chuàng)建頁面,實現(xiàn)延時2s修改對象的值。

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>LearnVue3.0</title>
</head>
<body>
  <div id="app"></div>
  <script type="text/javascript" src="test.js"></script>
  <script type="text/javascript">
    const vm = new vue();
    setTimeout(function () {
      console.log('change');
      console.log(vm.$data);
      vm.$data.a = 444;
    }, 2000);

  </script>
</body>
</html>

defineProperty 實現(xiàn):

function vue() {
  this.$data = {
    a: 1
  };
  this.el = document.getElementById('app');
  this._html = "";
  this.observe(this.$data);
  this.render();
}

vue.prototype.observe = function (obj) {
  let self = this;
  let value;

  for (let key in obj) {
    value = obj[key];
    if (typeof value === 'object') {
      this.observe(value);
    } else {
      Object.defineProperty(this.$data, key, {
        get: function () {
          return value;
        },
        set: function (newvalue) {
          value = newvalue;
          self.render()
        }
      })
    }
  }
}

vue.prototype.render = function () {
  this._html = "I am " + this.$data.a;
  this.el.innerHTML = this._html;
}

在Chrome中console運行,結(jié)果頁面顯示: I am 444

針對數(shù)組特性化處理:

let arraypro = Array.prototype;
// 為什么要create再次創(chuàng)建對象,create是深拷貝,不影響之前的arraypro
let arrayob = Object.create(arraypro);
// 定義哪些方法觸發(fā)更新
let arr = ["push", "pop", "shift"];

// arr里的方法,既能保持原有方法,又能觸發(fā)更新
// 裝飾者模式
arr.forEach(function (method, index) {
  // 對自己的push方法重寫
  arrayob[method] = function () {
    let ret = arraypro[method].apply(this, arguments);
    // self.render();
    console.log('檢測到數(shù)組變化,觸發(fā)更新');
    return ret;
  }
});

在Chrome中console運行示例:

let arr = [];
arr.__proto__ = arrayob;
arr.push(1);

結(jié)果顯示:

Vue2.X和Vue3.0數(shù)據(jù)響應(yīng)的區(qū)別有哪些 

Vue3.0數(shù)據(jù)響應(yīng)原理

Vue3.0數(shù)據(jù)響應(yīng)原理

創(chuàng)建頁面,實現(xiàn)延時2s修改對象的值。代碼同上。

Proxy實現(xiàn):

function vue() {
  this.$data = {
    a: 1
  };
  this.el = document.getElementById('app');
  this._html = "";
  this.observe(this.$data);
  this.render();
}

vue.prototype.observe = function (obj) {
  let self = this;

  this.$data = new Proxy(this.$data, {
    get: function (target, key) {
      return target[key];
    },
    set: function (target, key, newvalue) {
      target[key] = newvalue;
      self.render();
    }
  })
}

vue.prototype.render = function () {
  this._html = "I am " + this.$data.a;
  this.el.innerHTML = this._html;
}

在Chrome中console運行,結(jié)果頁面顯示: I am 444

為什么改用Proxy

  • defineProperty只能監(jiān)聽某個屬性,不能對全對象監(jiān)聽

  • 可以省去for in循環(huán)提升效率

  • 可以監(jiān)聽數(shù)組,不用再去單獨的對數(shù)組做特異性操作

Proxy還能做什么

校驗類型

function createValidator(target, validator) {
  return new Proxy(target, {
    _validator: validator,
    set(target, key, value, proxy) {
      if(target.hasOwnProperty(key)) {
        let validator = this._validator[key];
        if(validator(value)) {
          return Reflect.set(target, key, value, proxy);
        } else {
          throw Error('type error');
        }
      }
    }
  })
}

let personValidator = {
  name(val) {
    return typeof val === 'string';
  },
  age(val) {
    return typeof val === 'number' && val > 18;
  }
}

class person {
  constructor(name, age) {
    this.name = name;
    this.age = age;
    return createValidator(this, personValidator);
  }
}

在Chrome中console運行示例:

let tmp = new person('張三', 30);

結(jié)果顯示:

Vue2.X和Vue3.0數(shù)據(jù)響應(yīng)的區(qū)別有哪些

以上就是Vue2.X和Vue3.0數(shù)據(jù)響應(yīng)的區(qū)別有哪些,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

名稱欄目:Vue2.X和Vue3.0數(shù)據(jù)響應(yīng)的區(qū)別有哪些
網(wǎng)址分享:http://www.rwnh.cn/article2/jeppic.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營銷、網(wǎng)站策劃、Google、自適應(yīng)網(wǎng)站定制網(wǎng)站、網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站網(wǎng)頁設(shè)計
汝南县| 泰兴市| 岱山县| 若尔盖县| 云龙县| 稷山县| 城固县| 呼和浩特市| 高安市| 北安市| 汤阴县| 青龙| 瑞丽市| 兰州市| 辛集市| 浦城县| 喜德县| 渭源县| 个旧市| 大埔区| 齐河县| 和静县| 井冈山市| 宜州市| 得荣县| 封开县| 锦州市| 交城县| 乐东| 礼泉县| 鄂温| 新疆| 年辖:市辖区| 冕宁县| 年辖:市辖区| 班玛县| 昔阳县| 桓台县| 新平| 独山县| 英吉沙县|