Home > Article > Web Front-end > How to get the corresponding modified value from the data generated by ng-repeat?
Interface structure
$scope.DataList = [ { "dataA":"numA", "dataB":"numB"a },{ "dataA":"numA", "dataB":"numB" },{ "dataA":"numA", "dataB":"numB" } ]
html
<ul><li ng-repeat="item in DataList"><span>{{item.dataA}}</span> //显示字段 dataA<input type="text" ng-model="{{item.dataB}}"></input> //操作 dataB 这个字段</li><ul>
js
$scope.DataList; //直接提交这个数组就可以了
The above is the detailed content of How to get the corresponding modified value from the data generated by ng-repeat?. For more information, please follow other related articles on the PHP Chinese website!