7
我學會了如何創建Flask Blueprints,並且可以爲使用Jinja2模板的非燒瓶產品創建藍圖並在燒瓶項目中使用它們。我做這樣的事情:如何從Flask藍圖的多個template_folder加載?
# blueprint code
from flask import Blueprint
from pkg_resources import resource_filename
app = Blueprint('formgear', __name__,
template_folder=resource_filename('formgear', 'templates'))
現在我想添加另一套模板,這在邏輯上與我的非瓶項目有關,但瓶,只有特定的。我完全不確定它是否是好設計,但是有沒有什麼辦法可以從一個藍圖中傳播兩個模板文件夾?並讓兩個模板都可用於整個Flask項目?
注:formgear
是我的非Flask項目的名稱。
難道我的回答回答你的問題? – pyfunc