This question already has answers here:
How to iterate object keys using *ngFor?

(5个答案)


3年前关闭。




我必须遍历模板内的对象键,因此我创建了这个自定义管道:

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

@Pipe({name: "keys"})
export class KeysPipe implements PipeTransform {
  transform(value: any, args?: any[]): any[] {
    return Object.keys(value);
  }
}

在我的页面中,它的导入方式如下:

import {KeysPipe} from "../../pipes/keys-pipe";
import {Component} from '@angular/core';
@Component({
  selector: 'page-history',
  templateUrl: 'history.html',
  pipes: [ KeysPipe ]
})
export class HistoryPage {}

但是当我构建项目时,会发生此错误:



任何的想法 ?我没有在app.module.tsapp.component.ts中声明它。
谢谢。

最佳答案

一段时间以来,pipes中不再有@Component()

现在是

@NgModule({
  declarations: [ KeysPipe ]

另请参阅Select based on enum in Angular2

07-24 15:50