compile 解析dom
lass Vue{
constructor(options = {}){
…
}
proxyData(key){
…
}
observer(data){
…
}
compile(el){
var nodes = el.childNodes;
for (let i = 0; i < nodes.length; i++) {
const node = nodes[i];
if(node.nodeType === 3){
var text = node.textContent.trim();
if (!text) continue;
this.compileText(node,‘textContent’)
}else if(node.nodeType === 1){
if(node.childNodes.length > 0){
this.compile(node)
}
if(node.hasAttribute(‘v-model’) && (node.tagName === ‘INPUT’ || node.tagName === ‘TEXTAREA’)){
node.addEventListener(‘input’,(()=>{
let attrVal = node.getAttribute(‘v-model’)
this.watcherTask[attrVal].push(new Watcher(node,this,attrVal,‘value’))
node.removeAttribute(‘v-model’)
return () => {
this.data[attrVal] = node.value
}
})())
}
if(node.hasAttribute(‘v-html’)){
let attrVal = node.getAttribute(‘v-html’);
this.watcherTask[attrVal].push(new Watcher(node,this,attrVal,‘innerHTML’))
node.removeAttribute(‘v-html’)
}
this.compileText(node,‘innerHTML’)
if(node.hasAttribute(‘@click’)){
let attrVal = node.getAttribute(‘@click’)
node.removeAttribute(‘@click’)
node.addEventListener(‘click’,e => {
this.methods[attrVal] && this.methods[attrVal].bind(this)()
})
}
}
}
},
compileText(node,type){
let reg = /{{(.*)}}/g, txt = node.textContent;
if(reg.test(txt)){
node.textContent = txt.replace(reg,(matched,value)=>{
let tpl = this.watcherTask[value] || []
tpl.push(new Watcher(node,this,value,type))
return value.split(‘.’).reduce((val, key) => {
return this.data[key];
}, this.$el);
})
}
}
}
这里代码比较多,我们拆分看你就会觉得很简单了
首先我们先遍历el元素下面的所有子节点,node.nodeType === 3 的意思是当前元素是文本节点,node.nodeType === 1 的意思是当前元素是元素节点。因为可能有的是纯文本的形式,如纯双花括号就是纯文本的文本节点,然后通过判断元素节点是否还存在子节点,如果有的话就递归调用compile方法。下面重头戏来了,我们拆开看:
上面这个首先判断node节点上是否有v-html这种指令,如果存在的话,我们就发布订阅,怎么发布订阅呢?只需要把当前需要订阅的数据push到watcherTask里面,然后到时候在设置值的时候就可以批量更新了,实现双向数据绑定,也就是下面的操作
然后push的值是一个Watcher的实例,首先他new的时候会先执行一次,执行的操作就是去把纯双花括号 -> 1,也就是说把我们写好的模板数据更新到模板视图上。
最后把当前元素属性剔除出去,我们用Vue的时候也是看不到这种指令的,不剔除也
不影响
至于Watcher是什么,看下面就知道了
Watcher
之前发布订阅之后走了这里面的操作,意思就是把当前元素如:node.innerHTML = ‘这是data里面的值’、node.value = ‘这个是表单的数据’
那么我们为什么不直接去更新呢,还需要update做什么,不是多此一举吗?
其实update记得吗?我们在订阅池里面需要批量更新,就是通过调用Watcher原型上的update方法。
效果
大家可以浏览器看一下效果,由于本人太懒了,gif效果图就先不放了,哈哈
标签:node,知乎,value,Watcher,attrVal,Vue,let,JS,节点 From: https://blog.csdn.net/2401_84094868/article/details/137362161