array1.filter不是标记输入的函数



我使用的是自动完成标记输入,但当我开始写时,我得到了这个错误: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.peoplejson,它类似于:

{
   "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>

您需要传递一个promise,其数据格式为

{
"data":[{'text':'tag1'}, {'text', 'tag1'}]
}

相关内容

  • 没有找到相关文章

最新更新