angularjs select 賦值 ng-options配置方法
數(shù)組方式
數(shù)據(jù)是數(shù)組
$scope.years = [2014, 2015, 2016];
頁面元素
<select ng-model="item" ng-options="item as y for y in years"> </select>
設(shè)置默認(rèn)值
如果需要設(shè)置默認(rèn)的選項(xiàng),可以先設(shè)置一個(gè)參數(shù):
$scope.item = 2016; $scope.years = [2014, 2015, 2016];
對(duì)象數(shù)組方式
數(shù)據(jù)是對(duì)象數(shù)組
$scope.sites = [
{site : "baidu", url : "https://www.baidu.com"},
{site : "163", url : "http://www.163.com"},
{site : "sina", url : "http://www.sina.com"}
];
頁面元素
<select ng-model="s.site" ng-options="s.site as s.site group by site.group for s in sites"> </select>
設(shè)置默認(rèn)值
如果需要設(shè)置默認(rèn)的選項(xiàng),可以先設(shè)置一個(gè)參數(shù):
$scope.site = "163";
$scope.sites = [
{site : "baidu", url : "https://www.baidu.com"},
{site : "163", url : "http://www.163.com"},
{site : "sina", url : "http://www.sina.com"}
];
Key-Vules對(duì)象數(shù)組方式
數(shù)據(jù)是對(duì)象數(shù)組
$scope.cars = {
car1 : {brand : "BYD", model : "Y50", color : "red"},
car2 : {brand : "CC", model : "HF", color : "white"},
car3 : {brand : "JL", model : "JL10D", color : "black"}
};
頁面元素
<select ng-model="myCar" ng-options="y.brand for (x, y) in cars"> </select>
設(shè)置默認(rèn)值
如果需要設(shè)置默認(rèn)的選項(xiàng),可以先設(shè)置一個(gè)參數(shù):
$scope.site = "BYD";
$scope.cars = {
car1 : {brand : "BYD", model : "Y50", color : "red"},
car2 : {brand : "CC", model : "HF", color : "white"},
car3 : {brand : "JL", model : "JL10D", color : "black"}
};
angularjs ng-options官方API
數(shù)組類型:
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
對(duì)象類型:
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
以上這篇angularjs select 賦值 ng-options配置方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
相關(guān)文章
關(guān)于Angularjs中自定義指令一些有價(jià)值的細(xì)節(jié)和技巧小結(jié)
這篇文章主要介紹了關(guān)于Angularjs中自定義指令一些有價(jià)值的細(xì)節(jié)和技巧小結(jié),小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2018-04-04
AngularJS實(shí)現(xiàn)分頁顯示數(shù)據(jù)庫信息
這篇文章主要為大家詳細(xì)介紹了AngularJS實(shí)現(xiàn)分頁顯示數(shù)據(jù)庫信息效果的相關(guān)資料,感興趣的小伙伴們可以參考一下2016-07-07
AngularJS中的包含詳細(xì)介紹及實(shí)現(xiàn)示例
本文主要介紹AngularJS 包含,這里對(duì)相關(guān)資料做了詳細(xì)整理,并附代碼實(shí)例和效果圖,有需要的朋友可以看一下2016-07-07
Angular 2父子組件數(shù)據(jù)傳遞之@ViewChild獲取子組件詳解
這篇文章主要給大家介紹了關(guān)于Angular 2父子組件數(shù)據(jù)傳遞之@ViewChild獲取子組件的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家具有一定參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起看看吧。2017-07-07
angularJs中$http獲取后臺(tái)數(shù)據(jù)的實(shí)例講解
今天小編就為大家分享一篇angularJs中$http獲取后臺(tái)數(shù)據(jù)的實(shí)例講解,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2018-08-08
Angularjs 雙向綁定時(shí)字符串的轉(zhuǎn)換成數(shù)字類型的問題
這篇文章主要介紹了Angular js雙向綁定時(shí)字符串的轉(zhuǎn)換成數(shù)字類型的問題,需要的朋友可以參考下2017-06-06
AngularJs Managing Service Dependencies詳解
本站主要介紹AngularJs Managing Service Dependencies的知識(shí)資料,這里整理相關(guān)知識(shí),及簡單示例代碼,有興趣的小伙伴可以參考下2016-09-09
Angular中自定義Debounce Click指令防止重復(fù)點(diǎn)擊
本篇文章主要介紹了Angular中自定義Debounce Click指令詳解,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-07-07

