我在组件代码中添加了以下行
pipes: [ OrderByPipe ].
显示以下错误
类型'{selector:string; templateUrl:string;管道: typeof OrderByPipe []; }'不能赋值给类型的参数 '零件'。对象文字只能指定已知属性,和 “管道”在“组件”类型中不存在。
如何解决这个问题
答案 0 :(得分:2)
pipes
中的{p> @Component()
是旧的方式,不再受支持
将管道添加到
@NgModule({
declarations: [OrderByPipe],
...
})