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

溫馨提示×

溫馨提示×

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

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

Vue2響應式系統之異步隊列怎么實現

發布時間:2022-04-13 10:23:25 來源:億速云 閱讀:231 作者:iii 欄目:開發技術

這篇“Vue2響應式系統之異步隊列怎么實現”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Vue2響應式系統之異步隊列怎么實現”文章吧。

試想一下如果這里的 console.log 是渲染頁面,那改變一次值就刷新一下頁面,會造成嚴重的性能問題,頁面也會不停的改變。

場景

import { observe } from "./reactive";
import Watcher from "./watcher";

const data = {
    a: 1,
    b: 2,
    c: 3,
};
observe(data);
const updateComponent = () => {
    console.log(data.a + data.b);
};

new Watcher(updateComponent);

const updateComponent2 = () => {
    console.log(data.c);
};
new Watcher(updateComponent2);

data.a = 2;
data.a = 3;
data.b = 4;

data.c = 5;

new Watcher(updateComponent) 進行依賴收集會輸出一次 3 ,new Watcher(updateComponent2) 進行依賴收集也會輸出一次 3 。

之后我們依次改變 a、 a 、b、c 的值,每改變一次就會觸發 Watcher 的執行,會連續進行四次的 console.log。

Vue2響應式系統之異步隊列怎么實現

試想一下如果這里的 console.log 是渲染頁面,那改變一次值就刷新一下頁面,會造成嚴重的性能問題,頁面也會不停的改變。

解決方案

我們可以通過一個隊列,收集所有的 Watcher 。

那什么時候執行 Watcher 隊列呢?

為了等所有的 Watcher 都收集完畢,可以將 Watcher 的執行放到 setTimeout 中。這樣當主線程全部執行后,才會去執行 Watcher 隊列。

代碼實現

我們可以給每一個 Watcher 加上一個 id,如果隊列中已經有 id 了就不加入隊列。

let uid = 0;

export default class Watcher {
    constructor(Fn, options) {
        this.getter = Fn;
        this.depIds = new Set(); // 擁有 has 函數可以判斷是否存在某個 id
        this.deps = [];
        this.newDeps = []; // 記錄新一次的依賴
        this.newDepIds = new Set();
       /******新增 *************************/
        this.id = ++uid; // uid for batching
        // options
        if (options) {
            this.sync = !!options.sync;
        }
       /************************************/
        this.get();
    }
    ...
}

我們同時提供了一個 options 對象,保存了其中的 sync 字段,表示是像之前一樣立即出觸發 Watcher 還是放到隊列中。

然后 Watcher 的 update 方法中我們去調用加入隊列的函數。

export default class Watcher {
    ...
    update() {
        if (this.sync) {
            this.run(); // 直接運行
        } else {
            queueWatcher(this); // 加入隊列
        }
    }
    ...
}

看一下 queueWatcher 的實現。

const queue = []; // 保存 Watcher 隊列
let has = {}; // 去重 Watcher
let waiting = false; // 是否加入到了 setTimeout 隊列

export function queueWatcher(watcher) {
    const id = watcher.id;
    if (has[id] == null) {
        has[id] = true;
        queue.push(watcher); // 加入隊列
        // queue the flush
        if (!waiting) { // 執行 Watcher 函數放到 setTimeout 隊列中,只加入一次即可
            waiting = true;
            setTimeout(flushSchedulerQueue, 0);
        }
    }
}

再看一下上邊執行 Watcher 隊列的 flushSchedulerQueue 函數的實現。

let flushing = false; // 是否正在執行隊列
let index = 0;
/**
 * Flush both queues and run the watchers.
 */
function flushSchedulerQueue() {
    flushing = true;
    let watcher, id;
    for (index = 0; index < queue.length; index++) {
        watcher = queue[index];
        id = watcher.id;
        has[id] = null;
        watcher.run();
    }

    resetSchedulerState(); // 執行結束后進行重置
}

/**
 * Reset the scheduler's state.
 */
function resetSchedulerState() {
    index = queue.length = 0;
    has = {};
    waiting = flushing = false;
}

總體上就是上邊的樣子了。

執行結果

import { observe } from "./reactive";
import Watcher from "./watcher";

const data = {
    a: 1,
    b: 2,
    c: 3,
};
observe(data);
const updateComponent = () => {
    console.log(data.a + data.b);
};

new Watcher(updateComponent);

const updateComponent2 = () => {
    console.log(data.c);
};
new Watcher(updateComponent2);

data.a = 2;
data.a = 3;
data.b = 4;

data.c = 5;

雖然后邊我們改變了四次 data 中的值,但事實上只有兩個 Watcher ,因此只會輸出兩次。

Vue2響應式系統之異步隊列怎么實現

以上就是關于“Vue2響應式系統之異步隊列怎么實現”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

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

vue
AI

达尔| 安庆市| 珲春市| 泸定县| 宣恩县| 阳山县| 江川县| 宽城| 乌鲁木齐市| 花莲县| 芒康县| 上饶县| 麻城市| 江城| 东源县| 无极县| 长垣县| 侯马市| 湘潭市| 乌苏市| 天门市| 深水埗区| 南安市| 宁陵县| 中方县| 岳阳市| 汉源县| 独山县| 清涧县| 西乡县| 襄城县| 江北区| 北票市| 贵南县| 浮梁县| 栾川县| 东丽区| 乐清市| 平山县| 项城市| 张掖市|