角度,ng-zorro:对象作为标签

时间:2019-09-14 13:32:41

标签: angular ng-zorro-antd

我在此处https://ng.ant.design/components/select/en#api中描述了nz-select,它允许用户选择多个成员。 我想要的是显示一个用户名作为标签标签,但是将ID绑定到模型。

<nz-select formControlName="member" nzMode="tags" (nzOnSearch)="searchUsers($event)">
    <nz-option *ngFor="let member of searchUsersList" [nzLabel]="member.name" [nzValue]="member._id">
    </nz-option>
</nz-select>

当用户通过下拉列表添加成员时,标签将显示用户名,但在模型中会添加ID。 重新加载此页面/字段时,看来我只能将字符串添加到模型中,这些字符串也将显示为label。我无法添加包含字符串和ID的复杂对象,而且我也不知道如何插入标签。

关于如何实现我想要的任何提示? 我真的不喜欢在后端/数据库中使用用户名的想法,但我也不想在标签中看到id。

2 个答案:

答案 0 :(得分:1)

我可以工作。

import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormControl } from '@angular/forms';

@Component({
  selector: 'nz-demo-select-label-in-value',
  template: `
    <nz-select
      [formControl]="control"
      style="width: 200px;"
      nzMode="tags">
      <nz-option *ngFor="let option of optionList"
       [nzValue]="option.value" 
       [nzLabel]="option.label">
      </nz-option>
    </nz-select>
  `
})
export class NzDemoSelectLabelInValueComponent implements OnInit {

  optionList = [{ label: 'Lucy', value: 1,}, { label: 'Jack', value: 2}];

  control: FormControl;

  constructor(private fb: FormBuilder) {

  }

  ngOnInit() {
    this.control = this.fb.control([2]);
  }

}

https://stackblitz.com/edit/angular-73fp31-simfut?file=src/app/app.component.ts

答案 1 :(得分:0)

问题是当您重新加载页面时,您销毁了所有标签。当您加载模型并将值粘贴到nz时,请选择这些ID的选项不在您的searchUsersList属性中。当您重新加载页面时,您需要获取表单控件member的ID,并将这些对象与您的searchUsersList合并。也许向带有这些ID的后端发出http请求,并获取这些ID的选项