0

看法:

<div class="row" ng-controller="TagsInputController">
    <tags-input ng-model="tags">
       <auto-complete source="queryTags($query)" min-length="1"></auto-complete>
    </tags-input>
</div>

控制器:

myApp.controller('TagsInputController',['$scope','$timeout','$http',function($scope,$timeout,$http){
      $scope.tags = [
    { text: 'Tag1' },
    { text: 'Tag2' },
    { text: 'Tag3' }
  ];


  $scope.queryTags=function($query){
    return $http.get('tags.php',{
        params:{
            'tag':$query
        }
    })
  }

}]);

php:tags.php

<?php
$names=array(
    'palash',
    'kailash',
    'kuldeep'
    );

echo json_encode($names); ?>

输出

请查看我附加的输出,它显示了那些与查询不匹配的标签,我只想显示哪些匹配

4

2 回答 2

1

这段代码

$scope.queryTags=function($query){
    return $http.get('tags.php',{
        params:{
            'tag':$query
        }
    })
}

只会返回您的姓名,tags.php而不对其进行任何过滤,而不是在服务器上而不是在客户端上。你可以使用Array.prototype.filterArray.prototype.includes方法来过滤你的数组$query

$scope.queryTags=function($query){
    return $http.get('tags.php',{
        params:{
            'tag':$query
        }
    }).then(function(names) {
        var filteredNames = names.filter(function(name) {
            return (name.includes($query);
        });
        return $q.when(filteredNames);
    })
}
于 2016-09-08T09:18:44.853 回答
0

自动完成只返回 promise 给出的输出。要应用过滤,您必须自己提供方法。

于 2016-10-18T02:05:07.880 回答