13

我一直在挖掘,发现我可以使用以下内容在对象上使用 *ngFor:

 <div *ngFor="#obj of objs | ObjNgFor">...</div>

ObjNgFor管道在哪里:

@Pipe({ name: 'ObjNgFor',  pure: false })
export class ObjNgFor implements PipeTransform {
    transform(value: any, args: any[] = null): any {
        return Object.keys(value).map(key => value[key]);
    }
}

但是,当我有这样的对象时:

{
"propertyA":{
    "description":"this is the propertyA",
    "default":"sth"
 },
"propertyB":{
    "description":"this is the propertyB",
    "default":"sth"
 }
}

我不太确定如何提取“propertyA”和“propertyB”,以便可以从 *ngFor 指令访问它。有任何想法吗?

更新

我想要做的是呈现以下 HTML:

        <div *ngFor="#obj of objs | ObjNgFor" class="parameters-container">
            <div class="parameter-desc">
                {{SOMETHING}}:{{obj.description}}
            </div>
        </div>

什么地方等于propertyApropertyB(这就是对象的结构)。因此,这将导致:

propertyA:this is the propertyA
propertyB:this is the propertyB
4

5 回答 5

17

或者不创建管道并将对象传递给 *ngFor,而是传递Object.keys(MyObject)给 *ngFor。它返回与管道相同的结果,但没有麻烦。

在 TypeScript 文件上:

let list = Object.keys(MyObject); // good old javascript on the rescue

在模板(html)上:

*ngFor="let item of list"
于 2017-05-13T04:58:01.790 回答
16

更新

6.1.0-beta.1 KeyValuePipe中引入了https://github.com/angular/angular/pull/24319

<div *ngFor="let item of {'b': 1, 'a': 1} | keyvalue">
  {{ item.key }} - {{ item.value }}
</div>

Plunker 示例

以前的版本

你可以试试这样的

export class ObjNgFor implements PipeTransform {
    transform(value: any, args: any[] = null): any {
        return Object.keys(value).map(key => Object.assign({ key }, value[key]));
    }
}

然后在你的模板上

  <div *ngFor="let obj of objs | ObjNgFor">
   {{obj.key}} - {{obj.description}}
  </div>

普朗克

于 2016-05-05T09:22:38.493 回答
14

只需从管道返回键而不是值,然后使用键访问值:

let而不是#在 beta.17 中)

@Pipe({ name: 'ObjNgFor',  pure: false })
export class ObjNgFor implements PipeTransform {
    transform(value: any, args: any[] = null): any {
        return Object.keys(value)//.map(key => value[key]);
    }
}
@Component({
    selector: 'my-app',
    pipes: [ObjNgFor],
    template: `
    <h1>Hello</h1>
 <div *ngFor="let key of objs | ObjNgFor">{{key}}:{{objs[key].description}}</div>    `,
})
export class AppComponent {
  objs = {
    "propertyA":{
      "description":"this is the propertyA",
      "default":"sth"
    },
    "propertyB":{
      "description":"this is the propertyB",
      "default":"sth"
    }
  };
}

Plunker 示例

另请参阅基于 Angular2 中的枚举选择

于 2016-05-05T09:14:14.730 回答
2

键.pipe.ts

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({ name: 'keys' })
export class KeysPipe implements PipeTransform {
    transform(obj: Object, args: any[] = null): any {
        let array = [];
        Object.keys(obj).forEach(key => {
            array.push({
                value: obj[key],
                key: key
            });
        });
        return array;
    }
}

app.module.ts

import { KeysPipe } from './keys.pipe';

@NgModule({
  declarations: [
    ...
    KeysPipe
  ]
})

example.component.html

<elem *ngFor="let item of obj | keys" id="{{ item.key }}">
    {{ item.value }}
</elem>
于 2018-10-01T13:13:14.040 回答
-1

没有使用管道这个例子

*ngFor="let Value bof Values; let i = index"

{{i}}
于 2019-12-19T02:16:03.303 回答