用法:在下次 DOM 更新循环结束之后执行延迟回调。在修改数据之后立即使用这个方法,获取更新后的 DOM 。

    Vue 实现响应式并不是在数据发生变化之后 DOM 立即变化,而是按一定的策略进行 DOM 的更新。

    Vue 异步执行 DOM 更新。只要观察到数据变化, Vue 将开启一个队列,并缓存在同一事件循环中发生的所有数据改变。如果同一个 watcher 被多次触发,只会被推入到队列中一次。这种在缓冲时去除重复数据对于避免不必要的计算和 DOM 操作上非常重要。然后,在下一个的事件循环 “tick” 中, Vue 刷新队列并执行实际(已去重的)工作。 Vue 在内部尝试对异步队列使用原生的 Promise.then 和 MessageChannel ,如果执行环境不支持,会采用 setTimeout(fn, 0) 代替。

    nextTick 源码
    Vue.nextTick 用于延迟执行一段代码,它接受 2 个参数(回调函数和执行回调函数的上下文环境),如果没有提供回调函数,那么将返回 promise 对象。
    源码:

    1. /**
    2. * Defer a task to execute it asynchronously.
    3. */
    4. export const nextTick = (function () {
    5. const callbacks = [] // 用来存储所有需要执行的回调函数
    6. let pending = false // 用来标志是否正在执行回调函数
    7. let timerFunc // 用来触发执行回调函数
    8. // 用来执行 callbacks 里存储的所有回调函数
    9. function nextTickHandler () {
    10. pending = false
    11. const copies = callbacks.slice(0)
    12. callbacks.length = 0
    13. for (let i = 0; i < copies.length; i++) {
    14. copies[i]()
    15. }
    16. }
    17. // the nextTick behavior leverages the microtask queue, which can be accessed
    18. // via either native Promise.then or MutationObserver.
    19. // MutationObserver has wider support, however it is seriously bugged in
    20. // UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It
    21. // completely stops working after triggering a few times... so, if native
    22. // Promise is available, we will use it:
    23. /* istanbul ignore if */
    24. // 将触发方式赋给 timerFunc
    25. // 先判断是否原生支持 promise ,如果支持,则利用 promise 来触发执行回调函数
    26. // 否则,如果支持 MutationObserver ,则实例化一个观察者对象,观察文本节点变化时,触发执行所有回调函数
    27. // 如果都不支持,则利用 setTimeout 设置延时为 0
    28. if (typeof Promise !== 'undefined' && isNative(Promise)) {
    29. var p = Promise.resolve()
    30. var logError = err => { console.error(err) }
    31. timerFunc = () => {
    32. p.then(nextTickHandler).catch(logError)
    33. // in problematic UIWebViews, Promise.then doesn't completely break, but
    34. // it can get stuck in a weird state where callbacks are pushed into the
    35. // microtask queue but the queue isn't being flushed, until the browser
    36. // needs to do some other work, e.g. handle a timer. Therefore we can
    37. // "force" the microtask queue to be flushed by adding an empty timer.
    38. if (isIOS) setTimeout(noop)
    39. }
    40. } else if (!isIE && typeof MutationObserver !== 'undefined' && (
    41. isNative(MutationObserver) ||
    42. // PhantomJS and iOS 7.x
    43. MutationObserver.toString() === '[object MutationObserverConstructor]'
    44. )) {
    45. // use MutationObserver where native Promise is not available,
    46. // e.g. PhantomJS, iOS7, Android 4.4
    47. var counter = 1
    48. var observer = new MutationObserver(nextTickHandler)
    49. var textNode = document.createTextNode(String(counter))
    50. observer.observe(textNode, {
    51. characterData: true
    52. })
    53. timerFunc = () => {
    54. counter = (counter + 1) % 2
    55. textNode.data = String(counter)
    56. }
    57. } else {
    58. // fallback to setTimeout
    59. /* istanbul ignore next */
    60. timerFunc = () => {
    61. setTimeout(nextTickHandler, 0)
    62. }
    63. }
    64. return function queueNextTick (cb?: Function, ctx?: Object) {
    65. let _resolve
    66. callbacks.push(() => {
    67. if (cb) {
    68. try {
    69. cb.call(ctx)
    70. } catch (e) {
    71. handleError(e, ctx, 'nextTick')
    72. }
    73. } else if (_resolve) {
    74. _resolve(ctx)
    75. }
    76. })
    77. if (!pending) {
    78. pending = true
    79. timerFunc()
    80. }
    81. if (!cb && typeof Promise !== 'undefined') {
    82. return new Promise((resolve, reject) => {
    83. _resolve = resolve
    84. })
    85. }
    86. }
    87. })()

    https://www.cnblogs.com/liuhao-web/p/8919623.html