我试图在ng-select中的值之前添加一个字符串?
我使用的是mixItup插件,并希望在下拉列表中包含文件管理器值,但需要混合使用"。"在期权价值中。
这就是我现在所得到的:
themeColor
这就是我的要求:
<select class="form-control" ng-model="category" ng-options="cat.id as cat.name for cat in categories">
<option label="Public" value="number:1">Public</option>
<option label="Personal" value="number:2">Personal</option>
</select>
我的代码:
<select class="form-control" ng-model="category" ng-options="cat.id as cat.name for cat in categories">
<option label="Public" value=".cat-1">Public</option>
<option label="Personal" value=".cat-2">Personal</option>
</select>
这甚至可能吗?
答案 0 :(得分:4)
是。您可以使用
ng-options="'.' + cat.id as cat.name for cat in categories"
http://jsfiddle.net/dp31o591/