gpt4 book ai didi

javascript - Vuex 状态和 vue-router

转载 作者:搜寻专家 更新时间:2023-10-30 22:54:57 24 4
gpt4 key购买 nike

我正在尝试用 vuejs 创建一个博客,但我有点卡住了。我所有的文章数据都在这样的 Vuex Store 中:

export const store = new Vuex.Store({    
state: {
articles: [{
title: "Article 1",
id: 1,
content:"Article 1 content"
}, {
title: "Article 2",
id: 2,
content:"Article 2 content"
}
}]
}

我的主页上有一个文章网格:

<div class="item-article" v-for="article in articles">
<router-link :to="{path: '/article/'+article.id}"></router-link>
<div>{{ article.title }}</div>
</div>


当我点击一篇网格文章时,我想让它重定向到具有相同 id 文章数据的 articlePage.vue 组件。

到目前为止,在我的 articlePage.vue 组件上我是这样的:

<div v-for="article in selectedArticle">
<h1>{{ article.title }}</h1>
<p>{{ article.content }}</p>
</div>

computed: {
selectedArticle(){
return this.$store.state.articles.filter(article => article.id == this.$route.params.id);
}
}

我想使用 $route.params.id 来捕获 VueX 中匹配的 id,并访问正确的数据。但它不起作用。我做错了什么?

感谢您的帮助! :)

最佳答案

首先,定义您的路线并查看如何创建动态路线:

const routes = [
{
path: '/articles/:id',
name: 'articles',
component: articlePage,
props: true
}
]

在你的 Vue 实例中,传递 routesvuex store:

new Vue({
store,
router: routes,
el: '#app',
render: h => h(App)
})

在你的 Vuex Store 的 getters 属性中,你需要创建一个通过 id 过滤/查找文章的方法,类似这样:

getArticlesById: (state) => (id) => state.articles.find(article => article.id === id)

最后,在你的 mounted() 方法中,调用他:

this.article = this.$store.getters.getArticlesById(this.articleId)

this.articleId是通过URL发送的参数,记得在组件props中定义他:

export default {
name: "articlePage",
props: ["category"],
...}

关于javascript - Vuex 状态和 vue-router,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52169797/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com