欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

AngularJS Select(选择框)使用详解

程序员文章站 2022-06-02 10:32:12
1、select概述 angularjs 中可以使用 ng-option 指令来创建一个下拉列表,列表项通过对象和数组循环输出

1、select概述

angularjs 中可以使用 ng-option 指令来创建一个下拉列表,列表项通过对象和数组循环输出

<div ng-app="myapp" ng-controller="myctrl">
  <select 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>

2、数据源为对象

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

<div ng-app="myapp" ng-controller="myctrl">
  <p>选择一辆车:</p>
  <select ng-model="selectedcar" ng-options="x for (x, y) in cars">
  </select>

  <h1>你选择的是: {{selectedcar.brand}}</h1>
  <h2>模型: {{selectedcar.model}}</h2>
  <h3>颜色: {{selectedcar.color}}</h3>

  <p>注意选中的值是一个对象。</p>
</div>

<script>
  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"}
    }
  });
</script>

选择的值为在 key-value 对中的value对象一个属性:

<div ng-app="myapp" ng-controller="myctrl">
  <p>选择一辆车:</p>
  <select ng-model="selectedcar" ng-options="y.brand for (x, y) in cars">
  </select>
  <p>你选择的是: {{selectedcar.brand}}</p>
  <p>型号为: {{selectedcar.model}}</p>
  <p>颜色为: {{selectedcar.color}}</p>
  <p>下拉列表中的选项也可以是对象的属性。</p>
</div>

<script>
  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"}
    }
  });
</script>

3、ng-options 与 ng-repeat

也可以使用ng-repeat 指令来创建下拉列表。
ng-repeat 指令是通过数组来循环 html 代码来创建下拉列表,但 ng-options 指令更适合创建下拉列表,它有以下优势:
使用 ng-options 的选项的一个对象, ng-repeat 是一个字符串。

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

<div ng-app="myapp" ng-controller="myctrl">
  <p>选择网站:</p>
  <select ng-model="selectedsite">
  <option ng-repeat="x in sites" value="{{x.url}}">{{x.site}}</option>
  </select>
  <h1>你选择的是: {{selectedsite}}</h1>
</div>
<script>
var app = angular.module('myapp', []);
app.controller('myctrl', function($scope) {
  $scope.sites = [
    {site : "google", url : "http://www.google.com"},
    {site : "runoob", url : "http://www.runoob.com"},
    {site : "taobao", url : "http://www.taobao.com"}
  ];
});
</script>

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

<div ng-app="myapp" ng-controller="myctrl">

<p>选择网站:</p>

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

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

</div>

<script>
var app = angular.module('myapp', []);
app.controller('myctrl', function($scope) {
  $scope.sites = [
    {site : "google", url : "http://www.google.com"},
    {site : "runoob", url : "http://www.runoob.com"},
    {site : "taobao", url : "http://www.taobao.com"}
  ];
});
</script>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。