ng-repeat over ng-options that share the same ng-model
本问题已经有最佳答案,请猛点这里访问。
我知道这很奇怪。如果不可能的话,我将转换API数据。
但是,我需要多个下拉列表来共享同一个NG模型。
问题:如何使每个下拉共享一个EDOCX1[1]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <p> {{selectedSize}} </p> <input ng-checked="selected" type="radio" name="colors" ng-model="selected.pdw.color" ng-value="key"/> <select ng-model="selectedSize" ng-options="choice as choice for (idx, choice) in val.sizes.split(',')" ng-change="selected.product.set.size(key,val, selectedSize);"> <option value="">Please select a size</option> </select> |
1 | $scope.size = {}; |
并将您的ng模型设置为
1 2 3 4 5 | <select ng-model="size.selectedSize" ng-options="choice as choice for (idx, choice) in val.sizes.split(',')" ng-change="selected.product.set.size(key,val, size.selectedSize);"> <option value="">Please select a size</option> </select> |
您不需要通过