2

我想在服务器端渲染中使用 Vue ,但模板内的内容数据必须从其他 CMS 服务器请求。

<template>
  <h1>{{ content.heading }}</h1>
</template>

<script>
  export default {
    data() {
      return {
        content: {
          heading: ''
        }
      }
    },
    created() {
      axios
        .get(CONTENT_RESOURCE)
        .then(content => this.content = content);
    }
  }
</script>

由于axios.get是异步请求,服务器将在请求完成之前发送空内容。

使用 curl 请求内容:

curl 'URL';
# It got <h1></h1>,
# but I want <h1>Something here</h1>

如何确保它可以在服务器端使用 CMS 内容数据呈现?

4

2 回答 2

3

根据vue-hackernews-2.0示例,src/server-entry.js将检测preFetch当前路由组件中的功能。

因此,只需preFetch在当前路由组件中添加一个函数并将数据保存到 Vuex 存储。

<template>
  <h1>{{ content.heading }}</h1>
</template>

<script>
  const fetchContent = store => 
    axios
      .get(CONTENT_RESOURCE)
      .then(content => store.dispatch('SAVE_CONTENT', content));

  export default {
    computed: {
      content() {
        return this.$store.YOUR_CONTENT_KEY_NAME
      }
    },
    preFetch: fetchContent,   // For server side render
    beforeCreate() {          // For client side render
      fetchContent(this.$store);
    }
  }
</script>
于 2016-11-12T12:50:16.380 回答
0

您必须在代码中进行以下更改:

var demo = new Vue({
    el: '#demo',
    data:{
         content : {heading: ""}
    },
    beforeMount() {
      var self = this;
      setTimeout(function(){
          self.content.heading = "HI"
      }, 100)
    }
})

这是一个工作小提琴

于 2016-11-11T07:07:46.537 回答