所以我关注这篇文章access key and value of object using *ngFor
然而,我找不到错误的错误'。
我已完成此@Pipe({name: 'keys'})
我已经导出了这门课程。
我已将其导入我的app.module.ts
我已将其列入声明
我已将它包含在我的app.component.ts中(我使用它的地方)
我还缺少什么?
答案 0 :(得分:2)
使用以下命令创建管道:
的 ng g p double
强>
如果您使用angular2 cli,那么只需要添加像`{{mytext |在你的模板html中加倍}} 。
无需在组件中添加文件,但检查管道应包含在app.module.ts @NgModule({declarations: [DoublePipe]})
中。
答案 1 :(得分:0)
您是否已将其放入AppModule
providers
列表中?