我在我的模板中使用 ng2-select 来选择项目,有一个名为“添加”的按钮,单击该按钮应显示另一个选择字段,其中包含其他类别的项目列表。为此,我的代码的最简单版本如下所示:
@Component({
moduleId: module.id,
selector: 'client-user-detail',
templateUrl: `<div #one>
<ng-select #selectRole [allowClear]="true"
[multiple]="true" (data)="refreshValue($event)"
(selected)="onSelectRole($event)"
(removed)="removed($event)"
(typed)="typed($event)"
placeholder="Choose/Search">
</ng-select>
<button [disabled]="isDisable"
class="btn btn-default"
(click)="add()">
<i class=" fa fa-save"></i>
Add
</button>
`,
styleUrls: ['clientuserdetail.component.css']
})
export class TestComponent {
@ViewChild('selectRole') public select: SelectComponent;
@ViewChild('one') d1:ElementRef;
constructor(
private renderer: Renderer
) { }
add() {
let htmlText = `<ng-select #selectRole [allowClear]="true"
[multiple]="true" (data)="refreshValue($event)"
(selected)="onSelectRole($event)"
(removed)="removed($event)" (typed)="typed($event)"
placeholder="Choose/Search">
</ng-select>`;
this.renderer.invokeElementMethod
(this.d1.nativeElement,'insertAdjacentHTML',
['beforeend',htmlText]);
}
}
上面的代码没有创建选择字段。我在某处读过有关组件解析器在这种情况下可能有用的信息,但我没有掌握明确的使用方法。如果有人可以简单地向我解释如何解决这个问题,我将不胜感激。我需要一个关于如何在角度 2 中动态添加或附加组件的清晰说明。提前谢谢你。