手写vue双向绑定原理

<!DOCTYPE html>
<html lang="zh-CN">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <!-- 实现vue -->
    <div id="app">
        <input type="text" v-model="text"> {{ text }}
    </div>
    <script>
        // 设置一个监听器
        function observe(obj, vm) {
            for (let key of Object.keys(obj)) {
                defineReactive(vm, key, obj[key])
            }
        };

        function defineReactive(obj, key, val) {
            let dep = new Dep();
            Object.defineProperty(obj, key, {
                get: function() {
                    if (Dep.target) {
                        dep.addSub(Dep.target)
                    }
                    return val
                },
                set: function(newVal) {
                    if (newVal === val) {
                        return
                    } else {
                        val = newVal;
                        dep.notify();
                    }
                }
            })
        };
        // 设置一个编译器
        function compile(node, vm) {
            if (node.nodeType === 1) {
                let attr = node.attributes;
                for (let i = 0; i < attr.length; i++) {
                    if (attr[i].nodeName === "v-model") {
                        let name = attr[i].nodeValue;
                        node.addEventListener("input", function(e) {
                            vm[name] = e.target.value
                        });
                        node.value = vm[name];
                        node.removeAttribute("v-model");
                    }
                }
            };
            let reg = /\{\{(.*)\}\}/;
            if (node.nodeType === 3) {
                if (reg.test(node.nodeValue)) {
                    let name = RegExp.$1;
                    name = name.trim();
                    // node.nodeValue == vm[name]
                    new Watcher(vm, node, name);
                }
            }
        };
        // 定义订阅者构造函数
        function Watcher(vm, node, name) {
            Dep.target = this;
            this.vm = vm;
            this.node = node;
            this.name = name;
            this.update();
            Dep.target = null;
        };
        Watcher.prototype = {
            get() {
                this.value = this.vm[this.name]
            },
            update() {
                this.get();
                this.node.nodeValue = this.value;
            }
        };
        // 定义订阅器构造函数
        function Dep() {
            this.subs = []
        };
        Dep.prototype = {
            addSub(sub) {
                this.subs.push(sub);
            },
            notify() {
                this.subs.forEach(function(sub) {
                    sub.update();
                })
            }
        };
        // 模板处理
        function nodeToFragment(node, vm) {
            let fragment = document.createDocumentFragment();
            let child;
            while (child = node.firstChild) {
                compile(child, vm);
                fragment.appendChild(child)
            };
            return fragment
        };
        // vue初始化
        function Vue(options) {
            this.data = options.data;
            let data = this.data;
            observe(data, this);
            let id = options.el;
            let dom = nodeToFragment(document.getElementById(id), this);
            document.getElementById(id).appendChild(dom)
        };
        const vm = new Vue({
            el: "app",
            data: {
                text: "hello world"
            }
        })
    </script>
</body>

</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

每天都在掉头发

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值