AngularJS Select(選擇框)的使用詳解

來源:互聯網
上載者:User


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

使用 ng-options 建立選擇框

在 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 = ["Ancto", "Aseoe", "BBS"];
});
</script>

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 : "Ancto", url : "http://www.111cn.net"},
    {site : "Aseoe", url : "http://m.111cn.net"},
    {site : "BBS", url : "http://www.111cn.net/anzhuo"}
];
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 : "Ancto",
    site02 : "Aseoe",
    site03 : "BBS"
};

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 sites">
</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.