«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 …

8
Angular2 : 사용자 지정 파이프를 찾을 수 없습니다.
내장 파이프는 작동하지만 사용하려는 모든 사용자 정의 파이프는 동일한 오류입니다. 파이프 'actStatusPipe'를 찾을 수 없습니다. [오류->] {{data.actStatus | actStatusPipe}} 두 가지 방법을 시도했으며 app.module의 선언에서 선언했습니다. app.module.ts : import {ActStatusPipe} from '../pipe/actPipe' @NgModule({ declarations: [ AppComponent, HomePage, ActivitiesList, ActStatusPipe ], ... }) 또는 다른 모듈을 사용하여 모든 파이프를 선언하고 내 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.