web-dev-qa-db-ja.com

* ngForを使用してオブジェクトキーを反復する方法

私は周りを調べていて、オブジェクトに対して* 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"
 }
}

* ngForディレクティブからアクセスできるように、「propertyA」と「propertyB」を抽出する方法がよくわかりません。何か案は?

[〜#〜]更新[〜#〜]

私がやりたいことは、次のHTMLを表示することです。

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

何かがpropertyAおよびpropertyBと等しい場合(これはオブジェクトの構造です)。したがって、これは以下につながります:

propertyA:this is the propertyA
propertyB:this is the propertyB
12
uksz

更新

6.1.0-beta.1KeyValuePipeが導入されました https://github.com/angular/angular/プル/ 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>

プランカー

10
yurzui

または、パイプを作成してオブジェクトを* ngForに渡す代わりに、Object.keys(MyObject)を* ngForに渡すだけです。パイプと同じように戻りますが、面倒はありません。

TypeScriptファイル:

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

テンプレート(html):

*ngFor="let item of list"
15
Jorge

値の代わりにパイプからキーを返し、キーを使用して値にアクセスします。

(beta.17では#ではなくlet

@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の列挙型に基づいて選択

12

keys.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>
0
jadeallencook

この例ではパイプを使用しない

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

{{i}}
0
HaiNM