Vue.js数组中的对象在商店数据中未定义

问题描述 投票:0回答:1

很抱歉,如果这确实很明显,但是我是Vue的新手,可能需要一些帮助。

我正在从商店中抓取一系列数据(帖子),并试图仅对阵列中的一个对象进行控制台记录,但每次都未定义。如果我控制台记录整个阵列,它将返回正常值。

我想这与在创建的挂钩中的console.log之前没有加载数据有关?我已经尽力了,这让我发疯。任何帮助表示赞赏(下面的简化代码)。

<script>
        export default {
          components: {},

     computed: {
            posts() {
              return this.$store.state.posts;
            }
          },
          created() {
            this.$store.dispatch("getPosts");
           console.log(this.posts[0])
           },
        };
        </script>


//Store code Below

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

    export const mutations = {
      updatePosts: (state, posts) => {
        state.posts = posts
      }
    }

    export const actions = {
      async getPosts({
        state,
        commit,
        dispatch
      }) {
        if (state.posts.length) return

        try {
          let posts = await fetch(
            `${siteURL}/wp-json/wp/v2/video`
          ).then(res => res.json())

          posts = posts
            .filter(el => el.status === "publish")
            .map(({
              acf,
              id,
              slug,
              video_embed,
              title,
              date,
              content
            }) => ({
              acf,
              id,
              slug,
              video_embed,
              title,
              date,
              content
            }))

          commit("updatePosts", posts)
        } catch (err) {
          console.log(err)
        }
      }
    }
arrays vue.js object vuex nuxt.js
1个回答
0
投票

请在下面尝试:

created() {
   this.$store.dispatch("getPosts");
   console.log(this.$store.state.posts[0])
},
© www.soinside.com 2019 - 2024. All rights reserved.