{{product.brand}} 如何循环 Vuex 商店中的项目-PHP中文网问答
如何循环 Vuex 商店中的项目
P粉513318114
P粉513318114 2023-09-11 23:38:31
0
1
524

这是我在 Vue 开发工具中的商店:

这是我的 Vue 组件:

 

如果我使用这个:

{{allProducts}}

我得到了所有产品。

但是当尝试用这个循环时:

{{ product.brand }}

不显示。

请问我该怎么办?

P粉513318114
P粉513318114

全部回复 (1)
P粉536909186

allProducts是具有属性products的对象,因此为了循环产品,请尝试product in allProducts.products

const app = Vue.createApp({ data() { return { allProducts: { products: [ {brand: 'aaa'}, {brand: 'bbb'} ] } }; }, }) app.mount('#demo')
 
{{ product.brand }}
    最新下载
    更多>
    网站特效
    网站源码
    网站素材
    前端模板
    关于我们 免责声明 Sitemap
    PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!