0
我在一個項目中工作,我必須從mongod中檢索詳細信息並將其顯示爲文本框中的前一個類型。typeahead in angular js not working
我的代碼是
HTML:
<div class="form-group">
<label for="resourceName" class="col-sm-4 control-label">Enter the Page Name<span>*</span></label>
<div class="col-sm-8">
<input type="text" class="form-control" name="title" ng-model="selected" typeahead="getPageName()" required>
</div>
</div>
控制器:
$scope.getPageName = function(){
return $http.get('/api/getPageName').success(function(response){
return limitToFilter(response.data, 15);
}).error(function(response){
});
};
但問題是,該功能不包括在所有的得到,如果我在文本框中鍵入調用。
在此先感謝
那麼,什麼是您使用您的預輸入?爲什麼你的問題用typeahead.js和angular-ui-typeahead標記?你的標記看起來不像你使用angular-ui-typeahead的那個:https://angular-ui.github.io/bootstrap/#!#typeahead –