我有一组选择下拉菜单,我试图根据 angularJS 中第一个选择下拉菜单的选择来填充第二个选择下拉菜单。我不知道如何真正开始。
我已经准备好所有模型,但正在与动态人口作斗争。
选择1:
<select ng-model="selectedSource" ng-options="source.name for source in sourceList">
<option value="">-- Select item --</option>
</select>
$scope.sourceList= [
{
"name":"Person",
"has": ["a","b","c"]
},
{
"name":"Car",
"has": ["1","2","3"]
}
];
想要达到的目标:
何时填充第二个选择下拉sourceList.name
列表Person
targerSet1
$scope.targerSet1= [
{
"name":"King Julien"
}
];
何时填充第二个选择下拉sourceList.name
列表Car
targerSet2
$scope.targerSet2= [
{
"name":"RoyalMobile"
}
];