0
我有一個藍圖的視圖:瓶 - 呈現在其他藍圖模板而不重定向
@blueprint1.route("/home"):
#load some data
....
#if certain condition is present, I want to essentially forward the request
if data.has_condition:
return render_template(????)
或者,我想將請求轉發到不同的藍圖進行處理。無論如何要完成這個?
謝謝..我知道我可以做到這一點,但我試圖避免它/感到哈克。轉發它會更優雅,但這是有效的。 – fansonly