美好的一天,我有一个简单的ng-repeat迭代遍历一个对象数组。这是html代码的片段:
<div ng-repeat="coapplicant in coapplicants">
<div class="row">
<div class="col-md-6">
<label>Joint Holder ID</label>
<input type="text" name="joint_holder_id" class="form-control" ng-model="coapplicant.joint_holder_id">
</div>
<div class="col-md-6">
<label>Notes</label>
<textarea name="notes" class="form-control" ng-model="coapplicant.notes"></textarea>
</div>
</div>
<br>
<div class="row">
<div class="col-md-4">
<label>Relation Code</label>
<select name="relation_code" class="form-control" ng-model="coapplicant.relation_code" ng-options="rcode.key as rcode.value for rcode in relation_code track by rcode.key">
<option value="">Select Relation Code</option>
</select>
</div>
</div>
</div>
这里是我循环的对象数组:
[{joint_holder_id:23232},{joint_holder_id:222323}]
如果您回头看第一个代码片段,用户应该在notes textarea中添加信息并选择关系代码。我想获取这些值并将其作为对象数组存储在变量中。那么,怎么能实现这个呢?在此先感谢您的帮助