0
這可能是一個愚蠢的問題,但我是使用Python進行編碼的新手。 使用燒瓶並呼籲@app.route()
,我需要創建幾個HTML文件。 而不是編碼@app.route()
內的所有內容,我可以在返回render_template
之前調用app.route
內的不同def
?在應用程序中調用def的Flask/Python
編輯:
,所以我創建的HTML文件。而不是在app.route
內打開3-4個不同的文檔並向它們打印行,我可以在主代碼中創建3-4個函數來處理每個文檔。
因此而不是:
@app.route('/')
Print all html files
有:
def html1():
write html files
@app.route('/')
html1()
render_template
請提供更多信息。你是否試圖從你的路由處理函數中調用一個函數? –
編輯上面的主要 – iProfusion
你是什麼意思通過編寫html文件? –