iT邦幫忙

2022 iThome 鐵人賽

DAY 25
0
Modern Web

flask系列 第 25

Day 25 Flask render template

  • 分享至 

  • xImage
  •  

Flask 回傳一個頁面是使用 render_template() 這個 function,而 Flask 會自動到根目錄下的 templates 資料夾找頁面回傳,所以必須先創建 templates 資料夾,讓 render_template() 這個 function 能在資料夾中找到 .html 檔進行呼叫

home
├── templates
│   └── index.html
├── app.py
├── configs.py
├── Pipfile
└── Pipfile.lock

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>index</title>
</head>
<body>
    <h1>Hello World</h1>
</body>
</html>

configs.py

ENV = 'development'
DEBUG = True

app.py

import configs as CONFIGS
from flask import Flask, render_template

app = Flask(__name__)
app.config.from_object(CONFIGS)


@app.route("/index")
def index():
    return render_template('index.html')  # 回傳template資料夾中的index.html


if __name__ == "__main__":
    app.run()

執行結果


上一篇
Day24 flask request File upload
下一篇
Day26 flask 傳送參數
系列文
flask30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言