2

为了测试 VueJS 服务器端渲染,我试图弄清楚一些事情。我使用最新的VueJS Hackernews 2.0作为这个项目的样板。

目前我坚持这个:

服务器使用 预取数据preFetch。都好。当用户路由到这个组件时,相同的函数在beforeRouteEnter函数内部被调用。都好。

但是,当用户第一次加载它时,该preFetchData函数会被调用 2 次。一进preFetch一进beforeRouteEnter

这是有道理的,因为这正是 Vue Router 的工作方式。preFetch在服务器上运行,一旦 Vue 在客户端呈现,beforeRouteEnter就会调用。

但是,我不希望 Vue 在第一次加载时执行 2 次,因为数据已经从服务器端渲染功能存储在存储中preFetch

我无法检查数据是否已经在商店中,因为我希望该组件始终在beforeRouteEnter. 只是不是当它来自服务器时第一次呈现时。

在这种情况下如何只获取一次数据?

  <template>
    <div class="test">
        <h1>Test</h1>
      <div v-for="item in items">
        {{ item.title }}
      </div>
    </div>
  </template>

  <script>
  import store from '../store'

  function preFetchData (store) {
    return store.dispatch('GET_ITEMS')
  }

  export default {
    beforeRouteEnter (to, from, next) {
      // We only want to use this when on the client, not the server
      // On the server we have preFetch
      if (process.env.VUE_ENV === 'client') {
        console.log('beforeRouterEnter, only on client')
        preFetchData(store)
        next()
      } else {
        // We are on the server, just pass it
        next()
      }
    },
    name: 'test',
    computed: {
      items () {
        return this.$store.state.items
      }
    },
    preFetch: preFetchData // Only on server
  }
  </script>

  <style lang="scss">
  .test {
    background: #ccc;
    padding: 40px;

    div {
      border-bottom: 1px red solid;
    }
  }
  </style>

在上面:API 调用是在store.dispatch('GET_ITEMS')

4

4 回答 4

3

我已经想通了。我会检查用户来自哪里from.name。如果是这样null,则意味着用户第一次加载页面,因为我命名了我的所有路线。所以我们知道我们正在为服务器渲染的 HTML 提供服务:

beforeRouteEnter (to, from, next) { 
    if (from.name && process.env.VUE_ENV === 'client') {
      preFetchData(store).then(data => {
        next(vm => {
          // do something
        })
      })
    } else {
      next()
    }
  }
于 2017-01-12T19:52:30.697 回答
0

您还可以通过 vue 检查您是否在服务器上。

this.$isServer

或者

Vue.prototype.$isServer

只有在本地时才调用 beforeRouteEnter 预取。

beforeRouteEnter(to, from, next) {
    // We only want to use this when on the client, not the server
    // On the server we have preFetch
    if (!this.$isServer) {
        console.log('beforeRouterEnter, only on client')
        preFetchData(store)
        next()
    } else {
        // We are on the server, just pass it
        next()
    }
},
于 2017-01-11T23:04:40.627 回答
0

你可以做什么它在商店里设置一个变量,说这个页面的数据已经加载了。阅读该变量以查看是否应该调用 ajax 请求。

于 2017-01-12T18:54:15.203 回答
0

我只是检查窗口对象是否在created组件的方法中定义:

created () {
  if (typeof window === 'undefined') {
    // we're in server side
  } else {
    // we're in the client
  }
}
于 2017-04-11T15:38:01.557 回答