我正在使用 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>
应用程序.js:
$scope.loadTags = function(query) {
return $http.get('getTags?query=' + query).then(function (response) {
return response.data;
});
}