目前我有一个页面sr_list6.html接收了后端视图函数传递过来的数据(obj) 是一个列表套字典 共601个键值对,并在表格内显示
sr_list6.html
<div class="container-fluid" style="margin-top:5px;">
<div class="panel panel-default" style="OVERFLOW-X: scroll;">
<table class="table table-bordered" name="table">
<thead>
<tr>
<th>R400</th>
<th>R401</th>
<th>此处省略599个数据</th>
</tr>
</thead>
<tbody id="tb">
{% for item in obj %}
<tr>
<td>{{ item.r400 }}</td>
<td>{{ item.r401 }}</td>
<td>此处省略599个数据</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
效果如下
现在想把表格内的数据传递给另一个html页面中继续使用 请问该怎么办?有帮助必采纳!