搜索框位于模板视图中时筛选表

时间:2014-10-24 10:13:29

标签: angularjs angularjs-directive

我有以下结构

<div ng-include src="'_TableSearch.html'"></div>

<table class="table table-striped table-hover ">
    <thead>
        <tr>
            <th>Name</th>
        </tr>
    </thead>
    <tbody>
        <tr ng-repeat="personin people | filter:searchQeury">                
            <td><span>{{person.name}}</span></td>
        </tr>
    </tbody>
</table>

ng-include模板是

<input type="text" class="form-control" placeholder="search.." ng-model="searchQeury" />

问题,

我似乎无法让过滤器工作。当模板中当前的html直接插入到表定义之上时,它就可以工作。

我似乎无法解决问题所在。

0 个答案:

没有答案