我使用的是Angular 2.1.2,而且我在使用ng2-bootstrap的预先输入功能时遇到了问题,我使用的是1.1.16版本。我也使用Webpack。我基本上遵循网站上的示例,但我调整它以使用我提供的服务,它将提供typeahead字段的搜索结果。知道我为什么会收到这个错误吗?我也想知道它为什么说#34;当选"在错误消息中而不是"选择"就像我在下面的HTML中一样。
?>
HTML:
Unhandled Promise rejection: Template parse errors:
Can't bind to 'typeahead' since it isn't a known property of 'input'. ("elected | json}}</pre>
<input [(ngModel)]="selected"
[ERROR ->][typeahead]="chipFamilies"
(typeaheadOnSelect)="typeaheadOnSelect($event)""): AppComponent@76:27 ; Zone: <root> ; Task: Promise.then ; Value: Error: Template parse errors:(…) Error: Template parse errors:
Can't bind to 'typeahead' since it isn't a known property of 'input'. ("elected | json}}</pre>
<input [(ngModel)]="selected"
[ERROR ->][typeahead]="chipFamilies"
(typeaheadOnSelect)="typeaheadOnSelect($event)""): AppComponent@76:27
at TemplateParser.parse (eval at <anonymous> (http://localhost:3000/vendor.js:94:2), <anonymous>:7711:21)
at RuntimeCompiler._compileTemplate (eval at <anonymous> (http://localhost:3000/vendor.js:94:2), <anonymous>:17193:53)
at eval (eval at <anonymous> (http://localhost:3000/vendor.js:94:2), <anonymous>:17098:85)
at Set.forEach (native)
at compile (eval at <anonymous> (http://localhost:3000/vendor.js:94:2), <anonymous>:17098:49)
at ZoneDelegate.invoke (eval at <anonymous> (http://localhost:3000/polyfills.js:2294:2), <anonymous>:232:26)
at Zone.run (eval at <anonymous> (http://localhost:3000/polyfills.js:2294:2), <anonymous>:114:43)
at eval (eval at <anonymous> (http://localhost:3000/polyfills.js:2294:2), <anonymous>:502:57)
at ZoneDelegate.invokeTask (eval at <anonymous> (http://localhost:3000/polyfills.js:2294:2), <anonymous>:265:35)
at Zone.runTask (eval at <anonymous> (http://localhost:3000/polyfills.js:2294:2), <anonymous>:154:47)
at drainMicroTaskQueue (eval at <anonymous> (http://localhost:3000/polyfills.js:2294:2), <anonymous>:401:35)
打字稿:
<form class="navbar-form navbar-right" role="search">
<div class="form-group">
<pre class="card card-block card-header">Model: {{selected | json}}</pre>
<input [(ngModel)]="selected"
[typeahead]="chipFamilies"
(typeaheadOnSelect)="typeaheadOnSelect($event)"
class="form-control" style="width: 250px;" placeholder="Search Chip Families">
</div>
</form>
答案 0 :(得分:7)
您应该将TypeaheadModule
导入到您应用的NgModule
定义中:
import {TypeaheadModule} from 'ng2-bootstrap/components/typeahead';
@NgModule({
imports : [
//...
TypeaheadModule
],
//...
})
export class AppModule {}
答案 1 :(得分:2)
从ngx-bootstap导入TypeaheadModule,并确保使用以下命令在npm中安装模块:
npm i ngx-typeahead
import { TypeaheadModule } from 'ngx-bootstrap/typeahead';
// or
import { TypeaheadModule } from 'ngx-bootstrap';
@NgModule({
imports: [TypeaheadModule.forRoot(),...]
})
export class AppModule(){}
答案 2 :(得分:0)
在应用了指示的建议之后,请确保包含输入的组件已在模块中声明