私は、前のオプションに基づいて他の1つの選択肢の内容を選択する2つの選択肢を作成したいと考えています。ここに私のhtml前の選択オプションに基づくコンテンツ選択オプションangularjs
<div class="col-sm-2">
<select class="form-control" ng-model="y">
<option value="1">a</option>
<option value="2">b</option>
</select>
</div>
<div class="col-sm-2">
<select class="form-control" ng-model="z">
<option ng-repeat = "x in list" value="{{x.idproduct}}">{{x.descproduct}}</option>
</select>
</div>
でのようにオプションを示す他の選択オプションは、私のjsファイル
if ($scope.y === 1) {
$scope.list = [
{idproduct:"13", descproduct:"cc"},
{idproduct:"14", descproduct:"dd"}
];
}
if ($scope.y === 2) {
$scope.list = [
{idproduct:"15", descproduct:"ee"}
];
}
私は何が必要なのですか、ありがとうございました –