1

目前我想使用primeng自动完成多选组件:https ://www.primefaces.org/primeng/#/autocomplete

我还需要的是,我想作为自动建议选择的每个项目都应该有不同的颜色。

例如,如果我有巴黎(红色)、慕尼黑(蓝色)选项,则背景应该以不同的颜色显示。

4

1 回答 1

1

为每个国家/地区分配颜色后,只需使用模板来应用它:

<p-autoComplete [(ngModel)]="country" [suggestions]="filteredCountriesSingle" (completeMethod)="filterCountrySingle($event)"
  field="name" [size]="30" placeholder="Countries" [minLength]="1">

  <ng-template let-country pTemplate="item">
    <div class="ui-helper-clearfix" [ngStyle]="{'background-color':country.backgroundColor}">
      {{country.name}}
    </div>
  </ng-template>

</p-autoComplete>

检查我的Plunker,我在其中为每个国家/地区定义了随机颜色:

this.listOfCountries.forEach(function (item) {
  item.backgroundColor = "#"+((1<<24)*Math.random()|0).toString(16);
});
于 2018-02-07T13:18:46.133 回答