Angularjs select总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Angularjs select总结相关的知识,希望对你有一定的参考价值。

定义列表和选中项

$scope.Current = "Writing code"//定义选中项
$scope.TotalItems =[//定义列表
      { id: 1, type: "Work", name: "Writing code" },
      { id: 2, type: "Work", name: "Testing code" },
      { id: 3, type: "Work", name: "Fixing bugs" },
      { id: 4, type: "Play", name: "Dancing" }
   ];

使用方法:

方法1:
<select class="form-control" ng-model="Current">//只使用其中一列,循环列表
    <option value="">-- 请选择 --</option> <option ng-repeat="item in TotalItems ">{{item.name}}</option>
</select>

 

方法2://拼接字符项
<select class="form-control" ng-model="Current" ng-options="( item.name + ‘_‘ + item.id ) for itemin TotalItems">
    <option value="">-- 请选择 --</option>
</select>

 

方法3://与方法1基本相同
<select class="form-control" ng-model="Current" ng-options="item.name for item in TotalItems">
    <option value="">-- 请选择 --</option>
</select>

 

方法4://key为id,显示为name,key只能为数字
<select class="form-control" ng-model="Current" ng-options="item.id as item.name for item in TotalItems">
    <option value="">-- 请选择 --</option>
</select>

 

方法5://实现分组查询
<select class="form-control" ng-model="Current" ng-options="item.id as item.name group by item.type for item in TotalItems">
    <option value="">-- 请选择 --</option>
</select>

 

以上是关于Angularjs select总结的主要内容,如果未能解决你的问题,请参考以下文章

angularJS使用ocLazyLoad实现js延迟加载

angularjs中select下拉选择第一个选项为空白的解决办法

从 AngularJS url 中删除片段标识符(# 符号)

初入AngularJS基础门

是否有在单个活动中处理多个片段的 Android 设计模式?

AngularJs - SELECT 中的 ng-model