Giter Site home page Giter Site logo

Comments (1)

tyz98 avatar tyz98 commented on September 26, 2024

prefetchLink方法加载Components的核心代码

observer.unobserve(this.$el)

const Components = this.getPrefetchComponents()

for (const Component of Components) {
  const componentOrPromise = Component()
  if (componentOrPromise instanceof Promise) {
    componentOrPromise.catch(() => {})
  }
  Component.__prefetched = true
}

首先要unobserve这个el, 之后通过getPrefetchComponents()取得所有需要prefetch的components

getPrefetchComponents () {
  const ref = this.$router.resolve(this.to, this.$route, this.append)
  const Components = ref.resolved.matched.map(r => r.components.default)

  return Components.filter(Component => typeof Component === 'function' && !Component.options && !Component.__prefetched)
},

涉及到的api、概念等:

也就是说,这里取出了nuxt-link目标路由的所有嵌套路由记录中包含的异步组件

之后就用for循环执行异步组件的加载,并把它的__prefetched状态标记为true,表示已经被prefetch(这个状态也用于getPrefetchComponents方法中筛选尚未被prefetch的Components)

from fe-weekly.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.