我正在構建一個Angular應用程序,使用uib-typeahead,我無法使用加載屬性。當打印頭正在搜索大型數據集時,我想顯示一個微調框。這裏是我的代碼:顯示加載微調自舉typeheadhead加載
<input id="value"
class="form-control input-sm" type="text"
ng-model="filter"
uib-typeahead="option.value for option in values | filter:$viewValue | limitTo:1500"
placeholder="Select a value"
typeahead-loading="is_Loading"
typeahead-min-length="0"
typeahead-editable="true">
<span ng-if="is_Loading" id="myDiv"><img src="lib/images/ajax-spinner-large.gif" class="ajax-loader"/></span>
,當我在文本框中我打字無圖像顯示。我應該爲is_Loading分配一個$ scope變量嗎?使用ng-style
謝謝你的迴應。我不知道如何在Angular UI中使用這段代碼 - Bootstrap typeahead? – ellier7
所以你要我這樣做? –