admin管理员组文章数量:1349704
I have two dependent dropdowns. One shows countries another states. I would like the first one to save just the country id but use the entire object as source for the second dropdown. Here's what I have so far. There could potentially be many of these dropdowns in a same screen so that could plicate things because I would need to duplicate temporary variables(countrySource). Any suggestions?
<select name="country" ng-model="countrySource" ng-options="cntr as cntr.label for cntr in countries" ng-change="country=countrySource.id">
</select>
<select name="state" ng-model="state" ng-options="st.id as st.label for st in countrySource.states">
</select>
I have two dependent dropdowns. One shows countries another states. I would like the first one to save just the country id but use the entire object as source for the second dropdown. Here's what I have so far. There could potentially be many of these dropdowns in a same screen so that could plicate things because I would need to duplicate temporary variables(countrySource). Any suggestions?
<select name="country" ng-model="countrySource" ng-options="cntr as cntr.label for cntr in countries" ng-change="country=countrySource.id">
</select>
<select name="state" ng-model="state" ng-options="st.id as st.label for st in countrySource.states">
</select>
Share
Improve this question
edited Sep 6, 2013 at 7:15
vladexologija
asked Sep 6, 2013 at 7:10
vladexologijavladexologija
6,8774 gold badges31 silver badges28 bronze badges
1 Answer
Reset to default 12To keep things simple you can restructure your model as below where the keys act as ids:
$scope.countries = {
"c1" : {
label : "Country 1",
states:{
"s1":{
label:"State 1"
},
"s2" : {
label:"State 2"
}
}
},
"c2" : {
label:"Country 2",
states:{
"s3":{
label:"State 3"
},
"s4" : {
label:"State 4"
}
}
}
};
HTML
<select ng-model="country" ng-options="countryId as countryDetails.label
for (countryId, countryDetails) in countries">
</select>
<select name="state" ng-model="state" ng-options="stateId as stateDetails.label
for (stateId, stateDetails) in countries[country]['states']">
</select>
If by duplicate temporary variables(countrySource)
, you mean to use the same models for other dropdowns, selecting a country would change the options of all the country
and state
dropdowns on the page.
本文标签:
版权声明:本文标题:javascript - AngularJS - dependent dropdowns: storing one value in model, using other as source of the next dropdown - Stack Ove 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743865935a2552581.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论