私はUIブートストラップのタイプヘッドを持っていますが、データが受信されるとドロップダウンは表示されません。UIBタイプヘッドはドロップダウンを表示しません
$scope.obtainUsers = function (valor) {
console.log(valor)
$http({
method: "POST",
url: "http://localhost:3000/obtainUsers",
params: {"valor": valor}
}).then(function successCallback(response){
console.log(response.data);
return response.data;
}, function errorCallback(error){
alert("ERROR")
})
}
そしてtypeheadに、私はng-options
に同じsintaxを使用して、それがうまく動作しますが、無HTML
<input type="text" ng-model="selectedValue" uib-typeahead="userName as userName.userName for userName in obtainUsers($viewValue)" typeahead-loading="loadingUsers" typeahead-no-results="noResults" class="form-control">
<i ng-show="loadingUsers" class="glyphicon glyphicon-refresh"></i>
<div ng-show="noResults">
<i class="glyphicon glyphicon-remove"></i> No Results Found
</div>
。
編集:私は最終的に答えを見つけて[OK]を