我正在尝试将特定的道具映射到状态brands。另外,不要添加状态中已存在的值brands。
目标输出:
brands: [
"IKEA",
"Tesla"
]
我的尝试
const mapState = (state) => ({
brands: state.products.forEach(product => {
if (product.brands) {
return product.brands;
}
})
});
export default connect(mapState)(Brands);
状态:
products: [
{
"id": 1,
"title": "Pen",
"brands": "IKEA"
},
{
"id": 2,
"title": "Flamethrower",
"brands": "Tesla"
},
{
"id": 3,
"title": "T-shirt",
"brands": "Tesla"
}
]
海绵宝宝撒
翻翻过去那场雪
牛魔王的故事
相关分类