我无法从多个下拉菜单中将所选数据渲染到控制器中。我在ng-repeat标签中声明了一个选择框。
此选择框将重复列表大小。
假设我的列表大小为5.选择框将使用相同的数据重复5次。 我必须从选择框中将所选数据输入控制器。 有人可以帮助我吗?
以下是jsp代码示例...
<div ng-repeat="lanecategory in lanesList" >
<div class="lanesclass" for="{{$index}}">
<select ng-model="myLane" style="width: 172px" ng-options="myLane.lane for myLane in lanesList" id = "mylane{{$index}}" ng-change="changeLanesSelList()" ></select>
<select ng-model="myAssignment" style="width: 113px" ng-options="myAssignment.type for myAssignment in assignmentList" id = "myAssignment{{$index}}" ></select>
<input type="text" ng-model="value" style="width: 125px;height: 34px" id = "value{{$index}}"/>
<select ng-model="myOperation" style="width: 75px" class="form-control" ng-options="myOperation.type for myOperation in operationList" id = "myOperation{{$index}}" ></select>
</div>
</div>
...