提问人:shubham arya 提问时间:9/2/2022 更新时间:9/2/2022 访问量:30
V-for 用于嵌套数组,其中组件渲染的长度与父数组的长度一样多
V-for to work with nested arrays where the component renders as much as the length of the parent array
问:
我有一个嵌套的对象数组,结构如下:
selectedSystems = [[{name: 'James', systemID: 1}], [{name: 'John', systemID: 2}, {name: 'Emily', systemID: 3}], [{name: 'Rachel', systemID: 5}]]
我试图实现的是显示与父数组 (selectedSystems) 大小一样多的框中的名称,因此 Box1 将只有 James,框 2 有 John 和 emily,然后框 3 有 Rachel,对于 v 模型,我在子元素中使用 selectedSystem 的索引。所以 selectedSystem[0] 是第一个盒子的 v 模型,因为它包含 。我收到没有密钥传递的错误,任何其他方法可以做到这一点/使其更简单,将不胜感激。v-for
有人可以帮我解决这个问题吗?
答: 暂无答案
上一个:如何逐级解嵌 JSON
评论
box 2 has John and emily