用flask,bootstrap 实现前端传递数据,并实现前端界面的展示
<div class="panel panel-default panel-show">
<!-- Default panel contents -->
<!-- <div class="panel-heading panel-show" >路径展示</div>-->
<!-- Table -->
<table class="table">
<thead>
<tr>
<th>原始路径</th>
<th>预测结果</th>
</tr>
</thead>
<tbody>
{% for item in data %}
<tr>
<td>{{ item.history }}</td>
<td>{{ item.new }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
data = [
{"history": (1), "new": (2)},
{"history": (2), "new": (4)},
]
return render_template('hello.html', name=name,data=data)