标签: angular pipe ngfor
在这种结构中使用管道(例如async)的语法是什么:
<template let-item [ngForOf]="items"> ... </template>
P.S。我知道如何使用*ngFor的管道,但我需要<template>
*ngFor
<template>
谢谢。
答案 0 :(得分:3)
没有什么特别的
<template let-item [ngForOf]="items | somePipe">