ng-repeat && ng-options的故事

ng-repeat && ng-options的故事
 

1.

<select class="input-small" ng-model="newHost.os"

               style="width:102px;" ng-show="osType==2">
                <option ng-repeat="item in osList.Linux" value="{{item.id}}">{{item.name}}</option>
 </select>
 
 
2.为了觉得ie8的兼容性问题请用这一款!
<select class="input-small" ng-model="newHost.os"  style="width:102px;" ng-show="osType==2" ng-options="item.id as item.name for item in osList.Linux" ng-init="osList.Linux[0].id">
 </select> 
 
 
上一篇:python字典转化成json格式。JSONEncoder和JSONDecoder两个类来实现Json字符串和dict类型数据的互相转换


下一篇:可以默认的把以逗号分隔的字符串作为一个集合来遍历