5

我正在使用 nuxt 生成完整的静态 Web 应用程序,如此处所述https://nuxtjs.org/blog/going-full-static/#crazy-fast-static-applications

我也有一个小博客作为静态站点加载,所以我使用 fetch 钩子从 api 加载数据。

async fetch() {
  this.posts = await fetch(`${this.baseApi}/posts`).then(res => res.json())
},

当我生成( npm run generate)时,获取的状态是在里面正确生成的dist/assets/static,所以直接访问时/blog,状态正确加载,数据正确显示。但是,当我在主页中并使用

this.$router.push

或一个

<nuxt-link to="/blog">Blog</nuxt-link>

获取的状态没有被加载,我必须再次调用api,或者在钩子中再调用this.$fetch()一次mounted()

我已经添加了一个

watch: {
  '$route.query': '$fetch'
}

到主页

我需要在使用导航时正确加载获取的状态我还缺少什么?

澄清

我没有遇到 fetch 钩子本身的任何问题,而是导航没有检索目标路由的状态。连HTML都在那里我需要页面来获取目标路由的状态,当路由发生变化时,因为vue模板依赖它,所以如果没有加载,ui就不会显示任何东西,我是被迫的手动调用 fetch 钩子

为了看得更清楚,这是我的 devtools 在直接访问 /blog 时的屏幕截图,注意 state.js 是如何正确检索的(它包含所有呈现的内容) 直接访问时正确获取状态

以下是我的 devtools 在访问 / 时的屏幕截图,然后使用 nuxt-link 或 this.$router.push 去博客(结果相同)

导航后未获取状态

静态截图: /blog 的静态 state.js

Blog.vue

<template>
  <b-container class="container blog">
    <b-row>
      <b-col lg="12" md="12" sm="12" cols="12" class="logo-col">
        <SbLogoSingle />
      </b-col>
    </b-row>
    <b-row v-if="$fetchState.pending" class="text-center">
      <b-spinner style="margin: auto"></b-spinner>
    </b-row>
    <b-row v-else>
      <b-col
        v-for="(post, idx) in posts.data"
        :key="idx"
        lg="4"
        md="4"
        sm="6"
        cols="12"
        class="blog-post-col"
      >
        <b-card
          v-if="post !== undefined"
          no-body
          class="shadow-lg blog-post-card"
          :img-src="post.media.url"
          img-top
        >
          <b-card-body class="text-left">
            <b-card-title>{{ replaceSlugByString(post.slug) }}</b-card-title>
            <b-card-text
              class="post-short-description"
              v-html="post.localizations[0].shortDescription"
            ></b-card-text>
          </b-card-body>
          <template #footer>
            <div class="text-left">
              <b-button class="apply-btn read-more-btn" @click="openBlogPost(idx)">Read more</b-button>
            </div>
          </template>
        </b-card>
      </b-col>
    </b-row>
  </b-container>
</template>

<script>
import { mapState } from 'vuex'

export default {
  data() {
    return {
      slug: 'test',
      posts: {},
      currentPage: 1,
      perPage: 12,
      pageIndex: 1,
      totalPages: 1,
    }
  },
  async fetch() {
    const response = await fetch(`${this.baseApi}/StaticPage`)
    const fetchedPosts = await response.json()

    this.posts = fetchedPosts
    // this.posts = await fetch(`${this.baseApi}/StaticPage`).then(res =>res.json())
  },
  computed: {
    ...mapState('modules/settings', ['baseApi']),
  },
  beforeMount() {
    this.$fetch() // i want to remove this because the pages are statically generated correctly, I'm only adding it to refresh the state. which can be retrieved as a separate js file when accessing the route directly
  },
  methods: {
    openBlogPost(idx) {
      const pageObject = this.posts.data[idx]
      this.$router.push({
        name: `blog-slug`,
        params: {
          slug: pageObject.slug,
          page: pageObject,
        },
      })
    },
    replaceSlugByString(slug) {
      return slug.replaceAll('-', ' ')
    },
  },
}
</script>

这是 slug.vue 的 pastebin

https://pastebin.com/DmJa9Mm1

4

2 回答 2

0

编辑:

  • fetch()钩子很好用,即使你是第一次来这个特定的页面,它也会被触发
  • Vue devtools 可以帮助您找出某些状态是否丢失或行为异常。
  • 静态文件夹中没有状态之类的东西,因为状态根本不是静态变量或事物,它是动态的并且仅在运行时可用。
  • 此答案可能会帮助您查看 JSONplaceholder 的工作示例(带有列表 + 详细信息页面):How to have list + details pages based on API fetched content

尽量不要混合async/awaitthen
因此,这种语法应该更适合。

async fetch() {
  const response = await fetch(`${this.baseApi}/posts`)
  const fetchedPosts = await response.json()
  console.log('posts', fetchedPosts)
  this.posts = fetchedPosts
},

然后,您可以使用 devtools 的网络选项卡进行调试,看看它是否被触发。但我认为那应该没问题。


我刚刚写得更深入的这个答案也可以帮助理解更多的fetch()钩子:https ://stackoverflow.com/a/67862314/8816585

于 2021-06-07T23:09:44.213 回答
0

使用 nuxt 生成静态网站时nuxt generate,您可以使用 fetch 挂钩加载一次数据,而无需在您的网站中再次加载。

您可能会遇到这样的情况,即您有一个正确生成的 html 页面,但数据为空,即使您可以在 html 源代码中看到内容,并且空数据会导致 UI 无法加载,并迫使您重新点击api(或手动调用$fetch钩子),重新加载您的状态(和您的 UI)

在这种情况下,将您的数据移动到商店,在我的情况下,我创建了一个新store/modules/blog.js文件:

export const state = () => ({
   posts:[]
})
export const mutations = {
   SET_POSTS(state, posts) {
       state.posts = posts
   }
}

然后将您的 fetch 挂钩修改为:

async fetch() {
    const response = await this.$axios.$get(`${this.baseApi}/posts`)
    this.$store.commit("modules/blog/SET_POSTS",response)
}

您可以丢弃 this.$axios,并使用 fetch 没关系。

然后,在你运行之后npm run generate,看看dist/assets/static/<someid>/state.js你会在里面找到主页的所有状态(我的主页不包括博客文章)所以我读了modules:{blog:{posts:[]}...空数组

转到您的dist/assets/static/<someid>/blog/state.js,您应该会找到从 api 加载的所有帖子modules:{blog:{posts:{success:am,code:an ... 还有一个dist/assets/static/<someid>/blog/payload.js

现在,当您访问您的主页时,payload.js将在 变得可见时获取博客的<nuxt-link to='/blog'>,并且您的状态将使用已获取的数据进行更新

现在,如果您直接访问/blogstate.js将在获取之前检索payload.js,并且您的状态将是最新的

这就是您无需访问 API 即可创建小型静态博客的方式。希望这会有所帮助。

于 2021-06-09T20:30:52.637 回答