我有模板:
<div ng-repeat="CableFilterName in CableFilterNames">
<fieldset>
<legend>{{CableFilterName.filterName}}</legend>
<ul id="">
<li ng-repeat="filterValue in CableFilterName.filterValues">
<input type="checkbox"/> {{filterValue}}
<!-- <select> -->
</li>
</ul>
</fieldset>
</div>
其中filterValue
嵌套ng-repeat
有几个不同的值。所以问题是如何定义什么是 current filterValue
-value 并根据它使用 checkbox 或 select 或任何任意 HTML ?
更新:
filterValues = ['Cable System','Electrical', 'Lighting'];