私は周りを調べていて、オブジェクトに対して* 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
6.1.0-beta.1でKeyValuePipe
が導入されました https://github.com/angular/angular/プル/ 24319
<div *ngFor="let item of {'b': 1, 'a': 1} | keyvalue">
{{ item.key }} - {{ item.value }}
</div>
前のバージョン
あなたはこのようなものを試すことができます
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>
または、パイプを作成してオブジェクトを* ngForに渡す代わりに、Object.keys(MyObject)
を* ngForに渡すだけです。パイプと同じように戻りますが、面倒はありません。
TypeScriptファイル:
let list = Object.keys(MyObject); // good old javascript on the rescue
テンプレート(html):
*ngFor="let item of list"
値の代わりにパイプからキーを返し、キーを使用して値にアクセスします。
(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"
}
};
}
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>
この例ではパイプを使用しない
*ngFor="let Value bof Values; let i = index"
{{i}}