我正在製作Flask應用程序,我想知道是否可以爲路線呈現模板,但在功能完成後重定向用戶。目前使用Python 2.7這裏是我的例子燒瓶 - 異步呈現模板
@app.route('/loading/matched')
def match():
time_match()
return render_template('matched.html')
def time_match():
# match two users based on time
sleep(3) # pretend to be doing
return redirect('/loading/generation')
我不知道從哪裏開始。有我應該使用的圖書館嗎?
您不能發送頭(其朝向爲重定向)你已經開始發回響應主體(之後即呈現的模板)。 – dirn