$set和$del和方法的实现原理
大纲
前言
- vue版本:
2.6.9
; - path:
vue/src/core/util/next-tick.js
;
nextTick的实现逻辑
1 | const callbacks = [] |
进入nextTick,首先会点cb进行封装,涉及三个控制流!
- 如果存在cb,则调用cb函数:
cb.call(ctx)
; - 如果
_resolve
存在,则调用_resolve(ctx)
,_resolve
是Promise.resolve
的引用!这是在当前环境支持Promise
; - 不做任何处理。
在将cb
推入callbacks
后,判断当前是不是正在执行上次callbacks
的回调函数,根据pending(待定)来判断,当前是否要执行新的callbacks
的cb!
先假设当前pending = fakse
,那么进入if (!pending)
,执行timerFunc()
!
timerFunc是什么?
timerFunc
,是一个可将当前callbacks
作为一个回调函数(这个包裹的函数就是下面的flushCallbacks
),入队微/宏任务队列中,等待主线程代码执行完毕之后执行!
1 | function flushCallbacks () { |
timerFunc
根据当前环境的支持情况可能用Promise
、MutationObserver
、setImmediate
、setTimeout
实现!优先级:Promise
> MutationObserver
> setImmediate
> setTimeout
。
- 微任务(micro task):Promise、MutationObserver;
- 宏任务(macro task):setImmediate、setTimeout。
任务调用优先级:微任务 > 宏任务。
关于为什么这样的优先级,vue做了说明:
Here we have async deferring wrappers using microtasks. In 2.5 we used (macro) tasks (in combination with microtasks).However, it has subtle problems when state is changed right before repaint(e.g. #6813, out-in transitions).Also, using (macro) tasks in event handler would cause some weird behaviors that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109). So we now use microtasks everywhere, again.A major drawback of this tradeoff is that there are some scenarios where microtasks have too high a priority and fire in between supposedly sequential events (e.g. #4521, #6690, which have workarounds) or even between bubbling of the same event (#6566).
这里我们使用微任务异步延迟包装器。在2.5中,我们使用了(宏)任务(与微任务结合使用),但是当重新绘制之前状态发生改变时它存在一些细微的问题(例如#6813,输出转换)。在事件处理程序中使用(宏)任务会导致一些无法避免的怪异行为(例如#7109,#7153,#7546,#7834,#8109)。因此,我们现在再次在各处使用微任务。 是在某些情况下,微任务的优先级过高,并且在假定的顺序事件之间(例如#4521,#6690,它们具有变通方法)甚至在同一事件冒泡之间也会触发(#6566)。
timerFunc的实现
1 | let timerFunc |
Promise实现timerFunc
1 | if (typeof Promise !== 'undefined' && isNative(Promise)) { |
MutationObserver实现timerFunc
1 | else if (!isIE && typeof MutationObserver !== 'undefined' && ( |
setImmediate实现timerFunc
1 | else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) { |
setTimeout实现timerFunc
1 | else { |