有没有办法实现客户端搜索过滤器?
.filters([
nga.field('q', 'template')
.label('')
.pinned(true)
.template('<div class="input-group"><input type="text" ng-model="value" placeholder="Search" class="form-control"></input><span class="input-group-addon"><i class="glyphicon glyphicon-search"></i></span></div>'),
])
但问题是每次我更改输入字段中的值时客户端都会发送请求。有没有办法只在客户端使用过滤器?我在文档中没有找到任何东西。