다음과 같이 파이프를 호출 할 수 있다는 것을 알고 있습니다. {{ myData | date:'fullDate' }} 여기서 날짜 파이프는 하나의 인수 만 취합니다. 컴포넌트의 템플릿 HTML에서 직접 코드로 더 많은 파라미터를 가진 파이프를 호출하는 구문은 무엇입니까?
이 오류를 수정할 수없는 것 같습니다. 검색 창과 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 …
내장 파이프는 작동하지만 사용하려는 모든 사용자 정의 파이프는 동일한 오류입니다. 파이프 'actStatusPipe'를 찾을 수 없습니다. [오류->] {{data.actStatus | actStatusPipe}} 두 가지 방법을 시도했으며 app.module의 선언에서 선언했습니다. app.module.ts : import {ActStatusPipe} from '../pipe/actPipe' @NgModule({ declarations: [ AppComponent, HomePage, ActivitiesList, ActStatusPipe ], ... }) 또는 다른 모듈을 사용하여 모든 파이프를 선언하고 내 …