-1

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;
    });
}
4

2 に答える 2