适用于角度app的全球可用过滤器

时间:2013-06-08 11:40:48

标签: angularjs filter

在AngularJS应用程序中,我有一个包含任务列表的视图和一个带有过滤选项列表的侧栏,用于过滤这些任务。两者都在不同的控制器中。

边栏

<div ng-controller="SidebarController">
    <a href="" ng-click="showOnlyCompleted()">Completed</a>
</div>

任务

<div ng-controller="TaskController">
    <tr ng-repeat="task in tasks | filter: search">
        <td>task.title</td>
        <td>task.status</td>
    </tr>
</div>

SidebarController

$scope.search = [];

$scope.showOnlyCompleted = function()
{
    // set search filter
    $scope.search.status = 'completed'; 
};

TaskContoller

$scope.tasks = [
    {   title: 'do something', status:'todo' },
    {   title: 'do something else', status:'completed' }
];

问题是,我怎样才能使过滤器search可以通过SidebarController进行操作,但是仍然可以用来过滤来自TaskController的任务?这是一个范围问题,因为两个控制器都需要能够访问它吗?

我认为解决方案可能是一种可注入的东西,比如服务,但我真的不知道如何通过数据绑定来解决这个问题呢?

1 个答案:

答案 0 :(得分:3)

我看到了一个很好的解决方案here。基本上只需创建一个带有某种状态的filterService,将其注入控制器并直接绑定到视图中。