初始化代码
@app.route('/illegal/')
@login_required
def illegal():
c.execute('SELECT * FROM image')
datas = c.fetchall()
return render_template('illegal.html', datas = datas)
非法.html
<tbody>
{% for data in datas %}
<tr>
<td style="width:17%">{{data[1]}}</td>
<td style="width:17%">{{data[2]}}</td>
<td style="width:17">{{data[3]}}</td>
<td style="width:17%">{{data[4]}}</td>
<td style="width:25%"><img src={{data[5]}} style=" max-width: 80%; height: auto" class="img-rounded" width="100" hegiht="100" ></td>
</tr>
{% endfor %}
假设mysql中有4个数据,然后启动服务器。当我向表中插入新数据时。我的网站不知道有没有新的。它只知道在启动服务器之前存在的原始文件。当我检查mysql时,插入了新的数据。但现在存在于web服务器中。如果你知道解决办法,请帮助我
暂无答案!
目前还没有任何答案,快来回答吧!