angularjs select 赋值 ng-options配置方法
- 作者: 丶妖冶叔叔
- 来源: 51数据库
- 2021-08-13
数组方式
数据是数组
$scope.years = [2014, 2015, 2016];
页面元素
<select ng-model="item" ng-options="item as y for y in years"> </select>
设置默认值
如果需要设置默认的选项,可以先设置一个参数:
$scope.item = 2016; $scope.years = [2014, 2015, 2016];
对象数组方式
数据是对象数组
$scope.sites = [
{site : "baidu", url : "http://www.51sjk.com/Upload/Articles/1/0/285/285632_20210711002853367.com"},
{site : "163", url : "http://www.51sjk.com/Upload/Articles/1/0/285/285632_20210711002853833.com"},
{site : "sina", url : "http://www.51sjk.com/Upload/Articles/1/0/285/285632_20210711002854177.com"}
];
页面元素
<select ng-model="s.site" ng-options="s.site as s.site group by site.group for s in sites"> </select>
设置默认值
如果需要设置默认的选项,可以先设置一个参数:
$scope.site = "163";
$scope.sites = [
{site : "baidu", url : "http://www.51sjk.com/Upload/Articles/1/0/285/285632_20210711002853367.com"},
{site : "163", url : "http://www.51sjk.com/Upload/Articles/1/0/285/285632_20210711002853833.com"},
{site : "sina", url : "http://www.51sjk.com/Upload/Articles/1/0/285/285632_20210711002854177.com"}
];
key-vules对象数组方式
数据是对象数组
$scope.cars = {
car1 : {brand : "byd", model : "y50", color : "red"},
car2 : {brand : "cc", model : "hf", color : "white"},
car3 : {brand : "jl", model : "jl10d", color : "black"}
};
页面元素
<select ng-model="mycar" ng-options="y.brand for (x, y) in cars"> </select>
设置默认值
如果需要设置默认的选项,可以先设置一个参数:
$scope.site = "byd";
$scope.cars = {
car1 : {brand : "byd", model : "y50", color : "red"},
car2 : {brand : "cc", model : "hf", color : "white"},
car3 : {brand : "jl", model : "jl10d", color : "black"}
};
angularjs ng-options官方api
数组类型:
label for value in array select as label for value in array label group by group for value in array select as label group by group for value in array track by trackexpr
对象类型:
label for (key , value) in object select as label for (key , value) in object label group by group for (key, value) in object select as label group by group for (key, value) in ob
以上这篇angularjs select 赋值 ng-options配置方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
热点文章
Angular中响应式表单的三种更新值方法详析
7
Angularjs实现下拉框联动的示例代码
7
详解AngularJS跨页面传值(ui-router)
2
详解AngularJS1.x学习directive 中‘& ’‘=’ ‘@’符号的区别使用
3
angular2路由切换改变页面title的示例代码
4
Angular2 组件间通过@Input @Output通讯示例
5
Angularjs中ng-repeat的简单实例
3
AngularJS 中ui-view传参的实例详解
4
浅谈Angular路由守卫
4
详解基于Angular4+ server render(服务端渲染)开发教程
4
