我正在使用模板标签来使用角度1 ng-repeat-start 和 ng-repeat-end 的功能。它工作正常,但不明白我是如何声明的在它的管道。所以请帮助我。
<template ngFor let-customer [ngForOf]="customers" let-customerIndex="index">
在此我想放| customfilter:value | paginate:{itemsPerPage:4, currentPage: p}
答案 0 :(得分:0)
您可以将管道简单地放在现有ngForOf
绑定中,就像在常规ngFor
上一样:
[ngForOf]="customers | customfilter:value | paginate:{itemsPerPage:4, currentPage: p}"