我正在使用lodash分组
_.groupBy(_.flatten(this.postReleaseArr), 'module');
返回
如何返回名称“发布后支持”,“圆桌会议”,“VOD会议” 在* ngFor?
我的Html是
<div *ngFor="let item of postReleaseArr">
{{item}}
</div>
只返回
[object Object]
[object Object]
[object Object],[object Object]
[object Object]
答案 0 :(得分:1)
假设您的对象来自对象数组(JSON),请使用以下代码:
<div *ngFor="let item of postReleaseArr">
{{item['Post Release Support']}} - {{item['Round Table']}} - {{item['VOD Meeting']}}
</div>