我使用过" Angular 2 + Google地图自动填充功能"搜索。 它基本上是一个类似于输入类型的文本:
<input placeholder="search your location" autocorrect="off" autocapitalize="off" spellcheck="off" type="text" #searching="">
我想知道列表,它在输入一些文字后出现。我想为我的自定义输入字段创建这样的列表。 如果我在另一个子组件中创建输入字段,那么我将无法在其上应用表单和验证的直接ngModel功能。 因此,我想在输入后附加一些HTML,以显示列表以选择Google自动填充等值。 我之前使用jQuery通过在输入后附加列表来完成此操作。请建议我......
答案 0 :(得分:9)
如果要在HTML组件之后插入新组件或模板,则需要使用ViewContainerRef服务。
使用依赖注入获取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 {
}
我们正在组件中注入服务。在这种情况下,容器将引用您的主机元素(vcr元素),模板将作为vcr元素的兄弟插入。
答案 1 :(得分:6)
我对viewcontainerref有了非常深刻的描述。阅读它,你会理解很多东西。