我正在尝试在 Jhipster 生成的实体的下拉列表中使用 PrimeNg:
我的 .jdl 文件
`entity Testcns (testcns) {
libCns String,
dateCreaEnr Instant
}
entity Testfam (testfam) {
nomFam String,
dateCreaEnr Instant
}
relationship ManyToOne {
Testfam{testcns(libCns)} to Testcns
}
`
这是我的选择代码:
my code with primeng
<h3>Content with Filters</h3>
<p-dropdown name="customizedselect" [options]="testcns" [(ngModel)]="testfam.testcns"
filter="filter" [autoWidth]="false" [style]="{'width':'150px'}">
<ng-template let-testcns pTemplate="item">
<div class="ui-helper-clearfix" style="'display': 'inline-block'">
<span >{{testcns.libCns}}</span>
</div>
</ng-template>
</p-dropdown>
有小费吗?非常感谢