我有一个输入文本框,我想通过http请求
实现自动建议<input type="text" id="ingredients" ng-model="searchString" ng-change="callSuggestion()" ng-enter="getRecipesTracknPlan()" placeholder="Type of ingredients / recipe">
我正在尝试的自动填充是
angular.element.('#ingredients').autocomplete({
source: $scope.suggestionPhrase
});
我的错误
Uncaught SyntaxError:意外的令牌(
我怎么能纠正这个?
答案 0 :(得分:0)
您在element
之后有一个句号/句号,这是一个函数。