我有以下结构
<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直接插入到表定义之上时,它就可以工作。
我似乎无法解决问题所在。