有没有办法通过 ngIf 中的自定义管道有条件地处理可观察数据
我可以做类似的事情
<div *ngIf="dataFields$ | async | customPipe as fields ">
但是,我想在使用 customPipe 之前有一个条件
<div *ngIf="dataFields$ | async | <condition> ? customPipe as fields">
我只有if
条件,不需要else
块。但是,我无法弄清楚这个功能是否存在。
有没有办法通过 ngIf 中的自定义管道有条件地处理可观察数据
我可以做类似的事情
<div *ngIf="dataFields$ | async | customPipe as fields ">
但是,我想在使用 customPipe 之前有一个条件
<div *ngIf="dataFields$ | async | <condition> ? customPipe as fields">
我只有if
条件,不需要else
块。但是,我无法弄清楚这个功能是否存在。