zoukankan      html  css  js  c++  java
  • [Angularjs]ng-select和ng-options(转载)

    ng-select
    ng-select用来将数据同HTML的<select>标签进行绑定。这个指令可以和ng-model以及ng-options指令一起使用,构建精细且表现良好的动态表单。
     
    ng-options的值可以是一个内涵表达式(comprehension expression),其实这只是一种有趣的说法,简单来说就是它可以接收一个数组或者对象,并对她们进行循环,将内部的内容提供给select标签内部的选项。它可以是一下两种形式。
     
    1、数组作为数据源
     
    用数组中的值做标签。
     
    用数组中的值作为选中的标签。
     
    用数组中的值做标签组。
     
    用数组中的值作为选中的标签组。
     
    2、对象作为数据源
     
    用对象的键-值(key-value)做标签。
     
    用对象的键-值作为选中的标签。
     
    用对象的键-值作为标签组。
     
    用对象的键-值作为选中的标签组。
     
    一个例子
    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
    <head>
        <title>select</title>
        <script src="JS/angular.min.js"></script>
        <script>
            var app = angular.module('app', []);
            app.controller('selectController', function ($scope) {
                $scope.mycity = '北京';
                $scope.Cities = [{ id: 1, name: '北京' }, { id: 2, name: '上海' }, { id: 3, name: '广州' }];
            });
        </script>
    </head>
    <body>
        <div ng-controller="selectController">
            <select ng-model="mycity" ng-options="city for city in Cities"></select>
        </div>
    </body>
    </html>
    你会发现,上面的option中的text都是对象,这也很容易理解,因为cities数组的每一项都是一个对象,绑定的时候将以对象直接绑定上。那么我们如何只让它显示name属性呢?
     
        <div ng-controller="selectController">
            <select ng-model="mycity" ng-options="city.name for city in Cities"></select>
        </div>

    直接点出属性即可。

    值已经显示出来,但是并不是太完美,因为第一项默认选中的竟然没有值,那么接下来我们指定默认值。
     
      $scope.mycity = '北京';
    加上这句代码,并不能解决问题,我们仍需修改ng-options
     
    <select ng-model="mycity" ng-options="city.name as city.name for city in Cities"></select>
    我们再查看下dom
     
     
    ng-options有以下格式的语法
     
    for array data sources:
     
    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
    for object data sources:
     
    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
    在看一个分组的例子,为cities数组加上group属性,并按照group分组:
    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
    <head>
        <title>select</title>
        <script src="JS/angular.min.js"></script>
        <script>
            var app = angular.module('app', []);
            app.controller('selectController', function ($scope) {
                $scope.mycity = '北京';
                $scope.Cities = [{ id: 1, name: '北京', group: '中国' }, { id: 2, name: '上海', group: '中国' }, { id: 3, name: '广州',group:'中国' }];
            });
        </script>
    </head>
    <body>
        <div ng-controller="selectController">
            <select ng-model="mycity" ng-options="city.name as city.name group by city.group for city in Cities"></select>
        </div>
    </body>
    双向绑定
     
    这里已经指定了ng-model,获取选中的值,也非常方便了。
    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
    <head>
        <title>select</title>
        <script src="JS/angular.min.js"></script>
        <script>
            var app = angular.module('app', []);
            app.controller('selectController', function ($scope) {
                $scope.mycity = '北京';
                $scope.Cities = [{ id: 1, name: '北京', group: '中国' }, { id: 2, name: '上海', group: '中国' }, { id: 3, name: '广州', group: '中国' }];
            });
        </script>
    </head>
    <body>
        <div ng-controller="selectController">
            <select ng-model="mycity" ng-options="city.name as city.name group by city.group for city in Cities"></select>
            <h1>欢迎来到{{mycity}}</h1>
        </div>
    </body>
    </html>

    自己项目代码:

     <td>
                        工资:</br>
                        <select ng-model="GongZiID" ng-options="GongZiList.id as GongZiList.name  for GongZiList in GongZiObj"
                            style=" 152px;">
                        </select>
    </td>
      $scope.GongZiObj = [{ id: 0, name: '未填写' }, { id: 1, name: '面议' }, { id: 2, name: '1000以下' }, { id: 3, name: '1000–2000' }, { id: 4, name: '2000–3000' },
                             { id: 5, name: '3000–4000' }, { id: 6, name: '4000–6000' }, { id: 7, name: '6000–8000' }, { id: 8, name: '8000–10000' },
                             { id: 9, name: '10000–20000' }, { id: 10, name: '20000以上' },
         ];

     $scope.GongZiID = contentDs.source.GongZi;

  • 相关阅读:
    react-slick无法显示预期效果问题
    jQuery插件--zTree中点击节点实现页面跳转时弹出两个页面的问题
    javascript中a标签把href属性设置为“javascript:void(0)”还是会打开空白页面的问题
    clip-path实现loading圆饼旋转效果以及其他方法
    CSS实现折叠面板
    UI组件之色彩选择器
    11. Container With Most Water
    有趣的鼠标悬浮模糊效果总结---(filter,渐变文字)
    JavaScript编程那些事(牛客网 LeetCode)
    关于自定义checkbox-radio标签的样式的方法(label 和 background-position理解)
  • 原文地址:https://www.cnblogs.com/likaixuan/p/4741541.html
Copyright © 2011-2022 走看看