我对AngularJS 1.5和Boostrap.js存在一些兼容性问题。
我尝试了一些版本却没有成功。我创建了一个plunkr来举例说明一个预先输入不起作用。
<input type="text" ng-model="selected" uib-typeahead="state for state in states | filter:$viewValue | limitTo:8" class="form-control">
答案 0 :(得分:1)
您需要对代码进行两处更改:
变化
var scotchApp = angular.module('scotchApp', ['ngRoute']);
到
var scotchApp = angular.module('scotchApp', ['ngRoute', 'ui.bootstrap']);
变化
typeahead="state for state in states...
到
uib-typeahead="state for state in states...