2

我在标签输入中使用自动完成但是当我开始写作时我得到这个错误:array1.filter 不是一个函数。这是我的角度电话

$scope.loadTags = function(query) {
            var searchPeople = $scope.baseUrl + "&searchString=";
            return $http.get(searchPeople + query, {

            }).success(function (data) {
                $scope.people = data.data.data;
                console.log($scope.people);
            }).error(function (data){
                console.log("Error");
            });
        };

此外,我不知道如何从 $scope.people json 中检索一个值,例如:

{
   "id": 17,
   "cod": "gg117",
   "name": "Alex"
}

我知道我需要一个自定义模板,但只要我收到错误,我就无法做到。顺便说一下模板是这个,但我不知道它是否正确

<script type="text/ng-template" id="my-custom-template">
   <div class="left-panel">
        <img ng-src="./img/avatar.jpeg" />
   </div>
   <div class="right-panel">
        <span ng-bind-html="$highlight($getDisplayText())"></span>
        <span>({{people.name}})</span>
  </div>
</script>
4

1 回答 1

4

你需要传递一个承诺,数据格式为

{
"data":[{'text':'tag1'}, {'text', 'tag1'}]
}
于 2015-09-29T14:20:08.537 回答