菜鸟教程 -- 学的不仅是技术,更是梦想!

AngularJS 教程
(追記) (追記ここまで)

AngularJS Select(选择框)

AngularJS 可以使用数组或对象创建一个下拉列表选项。


使用 ng-options 创建选择框

在 AngularJS 中我们可以使用 ng-option 指令来创建一个下拉列表,列表项通过对象和数组循环输出,如下实例:

实例

<divng-app="myApp"ng-controller="myCtrl"><selectng-init="selectedName = names[0]"ng-model="selectedName"ng-options="x for x in names"></select></div><script> var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.names = ["Google", "Runoob", "Taobao"]; }); </script>

尝试一下 »

ng-init 设置默认选中值。


ng-options 与 ng-repeat

我们也可以使用ng-repeat 指令来创建下拉列表:

实例

<select>
<option ng-repeat="x in names">{{x}}</option>
</select>

尝试一下 »

ng-repeat 指令是通过数组来循环 HTML 代码来创建下拉列表,但 ng-options 指令更适合创建下拉列表,它有以下优势:

使用 ng-options 的选项是一个对象, ng-repeat 是一个字符串。


应该用哪个更好?

假设我们使用以下对象:

$scope.sites = [
 {site : "Google", url : "http://www.google.com"},
 {site : "Runoob", url : "http://www.runoob.com"},
 {site : "Taobao", url : "http://www.taobao.com"}
];

ng-repeat 有局限性,选择的值是一个字符串:

实例

使用 ng-repeat:

<select ng-model="selectedSite">
<option ng-repeat="x in sites" value="{{x.url}}">{{x.site}}</option>
</select>

<h1>你选择的是: {{selectedSite}}</h1>

尝试一下 »

使用 ng-options 指令,选择的值是一个对象:

实例

使用 ng-options:

<select ng-model="selectedSite" ng-options="x.site for x in sites">
</select>

<h1>你选择的是: {{selectedSite.site}}</h1>
<p>网址为: {{selectedSite.url}}</p>

尝试一下 »

当选择值是一个对象时,我们就可以获取更多信息,应用也更灵活。


数据源为对象

前面实例我们使用了数组作为数据源,以下我们将数据对象作为数据源。

$scope.sites = {
 site01 : "Google",
 site02 : "Runoob",
 site03 : "Taobao"
};

ng-options 使用对象有很大的不同,如下所示:

实例

使用对象作为数据源, x 为键(key), y 为值(value):

<select ng-model="selectedSite" ng-options="x for (x, y) in sites">
</select>

<h1>你选择的值是: {{selectedSite}}</h1>

尝试一下 »

你选择的值为在 key-value 对中的 value

value 在 key-value 对中也可以是个对象:

实例

选择的值在 key-value 对的 value 中, 这时它是一个对象:

$scope.cars = {
car01 : {brand : "Ford", model : "Mustang", color : "red"},
car02 : {brand : "Fiat", model : "500", color : "white"},
car03 : {brand : "Volvo", model : "XC90", color : "black"}
};

尝试一下 »

在下拉菜单也可以不使用 key-value 对中的 key , 直接使用对象的属性:

实例

<select ng-model="selectedCar" ng-options="y.brand for (x, y) in cars">
</select>

尝试一下 »
AI 思考中...

4 篇笔记 写笔记

  1. #0

    烈焰灬

    747***[email protected]

    12

    页面下拉框初始化是空的,设置初始值方法:

    var app = angular.module('myApp', []);
    app.controller('myCtrl', function($scope) {
     $scope.cars = {
     car01 : {brand : "Ford", model : "Mustang", color : "red"},
     car02 : {brand : "Fiat", model : "500", color : "white"},
     car03 : {brand : "Volvo", model : "XC90", color : "black"}
     }
     $scope.selectedCar = $scope.cars.car02; //设置第2个为初始值;
    });

    尝试一下 »

    烈焰灬

    747***[email protected]

    9年前 (2017年09月13日)
  2. #0

    youlangta

    724***[email protected]

    4

    另外一种设置初始值的方法:

    <div ng-app="myApp" ng-controller="myCtrl">
     <select ng-init="selectPerson=persons['caohui']" ng-model="selectPerson"
     ng-options="x for (x,y) in persons">
     </select>
     <p>
     年龄:{{selectPerson.age}}
     </p>
     <p>
     性别:{{selectPerson.sex}}
     </p>
     <p>
     月薪:{{selectPerson.salary}}
     </p>
    </div>

    尝试一下 »

    youlangta

    724***[email protected]

    9年前 (2017年09月17日)
  3. #0

    骑鱼看大海

    114***[email protected]

    2

    给 id 一个别名 y.name,显示出来的 name 值,但实际还是 id 值。

    <div ng-app="myApp" ng-controller="myCtrl">
    <p>给 id 一个别名 y.name,显示出来的name值,但实际还是 id 值。</p>
    <select ng-init="selectPersonid=persons['caohui'].id" ng-model="selectPersonid" ng-options="y.id as y.name for (x,y) in persons">
    </select>
    <p>
     id:{{selectPersonid}}
    </p>
    </div>

    尝试一下 »

    骑鱼看大海

    114***[email protected]

    8年前 (2018年08月21日)
  4. #0

    kindaries

    kin***[email protected]

    6

    下拉框默认的值为 key-value 对中的 value ,也可以用 as 来修改下拉框的值。

    也就是 x for (x, y) 相当于是 y as x for (x, y)

    as 前面的为下拉框的值,后面的为下拉框显示的内容。

    ​也可以不使用 key-value 对中的 value 作为下拉框的值, 直接使用对象的属性,代码示例:

    <body>
     <div ng-app="myApp" ng-controller="myCtrl">
     
     <p>使用 ng-options 创建下拉列表,选中的值是一个对象:</p>
     <select ng-model="selectedSite" ng-options="y.url as x for (x, y) in sites">
     </select>
     <h4>你选择的是: {{selectedSite}}</h4>
    </div>
     
    <script>
     var app = angular.module('myApp', []);
     app.controller('myCtrl', function($scope) {
     $scope.sites = {
     site01 : {site : "Google", url : "http://www.google.com"},
     site02 : {site : "Runoob", url : "https://www.runoob.com"},
     site03 : {site : "Taobao", url : "http://www.taobao.com"}
     };
     $scope.selectedSite = $scope.sites.site02.url; //设置第2个为初始值;
     });
    </script>
    </body>

    尝试一下 »

    kindaries

    kin***[email protected]

    8年前 (2018年10月08日)

点我分享笔记

  • 昵称 (必填)
  • 邮箱 (必填)
  • 引用地址

AltStyle によって変換されたページ (->オリジナル) /