0

我需要在模板中查看不同的数组索引及其值。我有这个对象:

vegetables = [
    {name: 'Carrot', type: 'vegetable'},
    {name: 'Onion', type: 'vegetable'},
    {name: 'Potato', type: 'vegetable'},
    {name: 'Capsicum', type: 'vegetable'}],
    [
      {name: 'Carrotas', type: 'vegetable'},
      {name: 'Onionas', type: 'vegetable'},
      {name: 'Potatoas', type: 'vegetable'},
      {name: 'Capsicumas', type: 'vegetable'}]

我这样做:

 <li class="list-group-item list-group-item-action list-group-item-success" [draggable] *ngFor="let items of [vegetables[0]]"
                        [dragClass]="'active'" [dragTransitClass]="'active'" [dragData]="item" [dragScope]="item.type" [dragEnabled]="dragEnabled">
                        {{item.name}}
                    </li>

[vegetables[0]]仅从列表中输出“Carrot”,仅此而已。相反,我需要它输出第一个数组及其所有内容,然后在第二次迭代中,输出带有“Carrotas”、“Onionas”等的第二个数组。如何实现这一点?

0将被替换为iwhich 将在每次遍历内部的不同列表数组时递增vegetables

4

1 回答 1

3

首先,您提供的数组是错误的。我假设它会是这样的:

vegetables = [[
{name: 'Carrot', type: 'vegetable'},
{name: 'Onion', type: 'vegetable'},
{name: 'Potato', type: 'vegetable'},
{name: 'Capsicum', type: 'vegetable'}],
[
  {name: 'Carrotas', type: 'vegetable'},
  {name: 'Onionas', type: 'vegetable'},
  {name: 'Potatoas', type: 'vegetable'},
  {name: 'Capsicumas', type: 'vegetable'}]]

如果我理解正确,要么您必须使用*ngIffor 索引编写(例如检查索引是奇数还是偶数),或者将它们减少为单个索引。例如:

const vegetablesReduced = vegetables.reduce((r, x) => [...r, ...x], []);

这将创建如下数组:

vegetablesReduced = [
  {name: 'Carrot', type: 'vegetable'},
  ...
  {name: 'Carrotas', type: 'vegetable'},
  ...
];

编辑:啊..我只看到您的问题仅在于数组定义。您在那里创建数组的方式是错误的,因为您只创建第一个而第二个被忽略(javascript ...)。尝试按照我提供的更改数组,看看它是否有效。

EDIT2:它应该是 2D 数组,而您只有 1D (并且也有错误,因为 1D 数组不能拆分为多个数组)您缺少的只是将整个东西包装到另一个数组中,它会起作用.

于 2018-12-02T15:49:31.580 回答