AngularJS入門教程之Select(選擇框)詳解_AngularJS

來源:互聯網
上載者:User

AngularJS Select(選擇框)

AngularJS 可以使用數組或對象建立一個下拉式清單選項。

使用 ng-options 建立選擇框

在 AngularJS 中我們可以使用 ng-option 指令來建立一個下拉式清單,清單項目通過對象和數組迴圈輸出,如下執行個體:

執行個體

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><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><p>該執行個體示範了 ng-options 指令的使用。</p></body></html>

運行結果:

GoogleRunoobTaobao

該執行個體示範了 ng-options 指令的使用。

ng-options 與 ng-repeat

我們也可以使用ng-repeat 指令來建立下拉式清單:

執行個體

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><div ng-app="myApp" ng-controller="myCtrl"><select><option ng-repeat="x in names">{{x}}</option></select></div><script>var app = angular.module('myApp', []);app.controller('myCtrl', function($scope) { $scope.names = ["Google", "Runoob", "Taobao"];});</script><p>該執行個體示範了使用 ng-repeat 指令來建立下拉式清單。</p></body></html>

運行結果:

 GoogleRunoobTaobao 

該執行個體示範了使用 ng-repeat 指令來建立下拉式清單。

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:

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><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><p>該執行個體示範了使用 ng-repeat 指令來建立下拉式清單,選中的值是一個字串。</p></body></html>

運行效果:

 選擇網站:

GoogleRunoobTaobao

你選擇的是:http://www.google.com

 該執行個體示範了使用 ng-repeat 指令來建立下拉式清單,選中的值是一個字串。

 使用 ng-options 指令,選擇的值是一個對象:

執行個體

使用 ng-options:

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><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><p>該執行個體示範了使用 ng-options 指令來建立下拉式清單,選中的值是一個對象。</p></body></html>

 運行效果:

 選擇網站:

GoogleRunoobTaobao

你選擇的是:google

網址為:http://www.google.com

該執行個體示範了使用 ng-options 指令來建立下拉式清單,選中的值是一個對象。

 當選擇值是一個對象時,我們就可以擷取更多資訊,應用也更靈活。

資料來源為對象

前面執行個體我們使用了數組作為資料來源,以下我們將資料對象作為資料來源。

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

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

執行個體

使用對象作為資料來源, x 為鍵(key), y 為值(value):

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><div ng-app="myApp" ng-controller="myCtrl"><p>選擇的網站是:</p><select ng-model="selectedSite" ng-options="x for (x, y) in sites"></select><h1>你選擇的值是: {{selectedSite}}</h1></div><p>該執行個體示範了使用對象作為建立下拉式清單。</p><script>var app = angular.module('myApp', []);app.controller('myCtrl', function($scope) { $scope.sites = { site01 : "Google", site02 : "Runoob", site03 : "Taobao"};});</script></body></html>

運行效果:

選擇的網站是:

site01site02site03

你選擇的值是:Google

該執行個體示範了使用對象作為建立下拉式清單。

 你選擇的值為在 key-value 對中的 value。

value 在 key-value 對中也可以是個對象:

執行個體

選擇的值在 key-value 對的 value 中, 這是它是一個對象:

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><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></body></html>

運行結果:

選擇一輛車

car01car02car03

你選擇的是: Fiat

模型: 500

顏色: white

注意: 選中的值是一個對象。

在下拉式功能表也可以不使用 key-value 對中的 key , 直接使用對象的屬性:

執行個體:

<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><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></body></html>

運行結果:

選擇一輛車:

FordFiatVolvo

你選擇的是: Ford

型號為:Mustang

顏色為: red

下拉式清單中的選項也可以是對象的屬性。

以上就是對AngularJS Select資料的整理,後續繼續補充,希望能協助有需要的朋友。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.