标签: javascript mysql angularjs grails
答案 0 :(得分:1)
您可以向ng-options添加过滤器。
ng-options
我在这里创建了搜索客户ID 的输入。 select中的数据将从此值中过滤。
select
<input type="text" ng-model="search"></input> <select ng-model="selectedCustomer" ng-options="c as c.id for c in customers | filter: {id: search}"></select>
<强> Check this demo application example 强>