我正在使用 JHipster 6.0.1 和 Angular 实现一个Web应用程序。
我需要在用户管理主页的每一行中隐藏USER ROLE
权限。为此,我决定实现一个过滤器管道并在这里使用。
<div *ngFor="let authority of user.authorities">
<span class="badge badge-info">{{ authority }}</span>
</div>
首先,我决定调查JHipster是否已提供过滤器管道。我在github https://github.com/jhipster/ng-jhipster/blob/master/src/pipe/filter.pipe.ts上找到了这个。尽管我在JHipster的文档中找不到如何使用它。