在后退按钮单击的基础上,根据先前存储的值加载表的值

时间:2017-10-25 15:50:12

标签: angularjs mean-stack

我有一个包含以下列的表:

<thead>
<tr>
<th st-sort="Check">Check</th>
<th st-sort="partNo">Part No.</th>
<th st-sort="quantity">Quantity</th>
</tr>
</thead>
<tbody>
<tr st-select-row="part" ng-repeat="part in vm.parts">
<td><input type="checkbox" id="mycheckbox" name="mycheckbox" ng-model="mycheckbox" data-ng-change="getQuantity(text) ; mycheckbox ? addPart(part) : deleteItem($index,part)" value="{{part.partNo}}" check-list='checked_parts'></td>
<td>{{part.partNo}}</td>
<td><input type="text" class="form-control" ng-model="text" id="ng-change-text"></td>
</tr>
</tbody>

当我点击下一个按钮时,我将数量和已检查的部分保存在服务中的数组中,并在后退按钮单击后返回加载

问题: 当我单击上一页的后退按钮时,我想检查与保存的部件对应的复选框,并在文本框中显示数量, 怎么实现这个?

how it should look
how it looks

0 个答案:

没有答案