我使用了“Angular 2 + Google Maps Places自动完成”搜索。
基本上是这样的输入类型文本:

<input placeholder="search your location" autocorrect="off" autocapitalize="off" spellcheck="off" type="text" #searching="">

我想知道列表,该列表在输入一些文本后出现。我想为我的自定义输入字段创建这样的列表。
如果我在其他子组件中创建输入字段,则将无法在其上应用表单的直接ngModel功能和验证。
因此,我想在输入后附加一些HTML,以显示列表以选择值,例如Google Autocomplete。
我之前在jQuery上通过在输入后附加一个列表来做到这一点。请建议我......

最佳答案

如果要在HTML组件之后插入新组件或模板,则需要使用ViewContainerRef服务。

通过依赖项注入(inject)获取ViewContainerRef:

import { Component,ViewContainerRef,ViewChild } from '@angular/core';
@Component({
    selector: 'vcr',
    template: `
    <ng-template #tpl>
    <h1>ViewContainerRef</h1>
    </ng-template>
    `,
})
export class VcrComponent {
    @ViewChild('tpl') tpl;
    constructor(private _vcr: ViewContainerRef) {
    }
    ngAfterViewInit() {
        this._vcr.createEmbeddedView(this.tpl);
    }
}
@Component({
    selector: 'my-app',
    template: `<vcr></vcr>`,
})
export class App {
}

我们正在将服务注入(inject)组件中。在这种情况下,容器将引用您的host元素(vcr元素),并且模板将作为vcr元素的同级插入。

10-08 03:44