我正在使用angularjs創建標記列表輸入。
當我在標籤列表控件中輸入3個以上的字符時,瀏覽器控制檯中顯示以下錯誤。錯誤:承諾未定義
AngularJS v1.2.23
ngTagsInput V2.1.0
Error: promise is undefined
SuggestionList/self.load/debouncedLoadId
HTML:
<tags-input ng-model="tags" display-property="Tag_Title" placeholder="Add Tag">
<auto-complete source="loadItems($query)"></auto-complete>
</tags-input>
app.js:
$scope.loadTags = function(query) {
return $http.get('getTags?query=' + query).then(function (response) {
return response.data;
});
}