微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript-自定义管道未正确导入

这个问题已经在这里有了答案:            >            How to iterate object keys using *ngFor?                                    4个
我必须遍历模板内的对象键,所以我做了这个自定义管道:

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 {}

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

Argument of type ‘{ selector: string; templateUrl: string; pipes: typeof KeysPipe[]; }’ is not assignable to parameter of type ‘Component’. Object literal may only specify kNown properties, and ‘pipes’ does not exist in type ‘Component’.

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

解决方法:

由于相当长一段时间,@ Component()中不再有管道.

现在是

@NgModule({
  declarations: [ KeysPipe ]

另见Select based on enum in Angular2

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐