如何使用JHipster的过滤器管道?

时间:2019-06-12 20:24:05

标签: angular jhipster

我正在使用 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的文档中找不到如何使用它。

0 个答案:

没有答案