3
我想要一個Flask路徑,它刪除SQLAlchemy模型的所有實例,VisitLog
。我打電話VisitLog.query.delete()
,然後重定向回頁面,但舊的條目仍然存在。沒有錯誤。爲什麼他們不被刪除?調用SQLAlchemy中的delete()後,行仍然存在
@app.route('/log')
def log():
final_list = VisitLog.query.all()
return render_template('log.html', loging=final_list)
@app.route('/logclear')
def logclear():
VisitLog.query.delete()
return redirect("log.html", code=302)
<a href="{{ url_for('logclear') }}">Clear database</a>