Questions tagged «angular2-pipe»


8
找不到管道''angular2自定义管道
我似乎无法解决此错误。我有一个搜索栏和一个ngFor。我试图使用这样的自定义管道过滤数组: import { Pipe, PipeTransform } from '@angular/core'; import { User } from '../user/user'; @Pipe({ name: 'usersPipe', pure: false }) export class UsersPipe implements PipeTransform { transform(users: User [], searchTerm: string) { return users.filter(user => user.name.indexOf(searchTerm) !== -1); } } 用法: <input [(ngModel)]="searchTerm" type="text" placeholder="Search users"> <div *ngFor="let user of …

8
Angular2:找不到自定义管道
内置管道是可行的,但是我要使用的所有自定义管道都是相同的错误: 找不到管道'actStatusPipe' [错误->] {{data.actStatus | actStatusPipe}} 我尝试了两种方法,在app.module的声明中进行声明: app.module.ts: import {ActStatusPipe} from '../pipe/actPipe' @NgModule({ declarations: [ AppComponent, HomePage, ActivitiesList, ActStatusPipe ], ... }) 或使用其他模块声明并导出我的所有管道:// pipe import {ActStatusPipe} from "./actPipe" @NgModule({ declarations:[ActStatusPipe], imports:[CommonModule], exports:[ActStatusPipe] }) export class MainPipe{} 并将其导入到app.module中。 //pipe import {MainPipe} from '../pipe/pipe.module' @NgModule({ declarations:[...], imports:[...,MainPipe], }) 但是它们都不在我的应用程序中工作。 这是我的管道代码: import {Pipe,PipeTransform} …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.