视图:
<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); ?>
请查看我附加的输出,显示那些与查询不匹配的标签,我只想显示哪个匹配
答案 0 :(得分:1)
此代码
$scope.queryTags=function($query){
return $http.get('tags.php',{
params:{
'tag':$query
}
})
}
只会从tags.php
返回您的名字而不对其进行任何过滤,而不是在服务器上而不是客户端上。
您可以使用Array.prototype.filter和Array.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);
})
}
答案 1 :(得分:0)
自动完成只返回promise提供的输出。要应用过滤,您必须自己提供方法。