from flask import Flask, render_templateapp = Flask(__name__)@app.route("/") ... We made two new changes#render_template將會找尋html檔案傳送給使用者.
確定! 回上一頁