我正在尝试在角度2 rc4版本中使用jQuery自动完成,但我收到错误,因为'类型jquery上不存在'属性自动完成'
我的HTML是:
<input class="search" id="search-input" type="text" placeholder="Search"/>
&安培;我的app.component.ts是
heroes:any = [100,200,101];
ngOnInit(): void {
jQuery( "#search-input" ).autocomplete({
source: this.heroes
});
}
预期结果应该是当我在输入框中输入1然后100和101应该弹出,我可以使用箭头键移动结果。
我已经安装了JQuery打字,因为我的其他jQuery函数工作得很好,我也尝试使用https://www.npmjs.com/package/ang2-autocomplete的解决方案,但我认为它适用于另一个版本的angular rc。
提前致谢。