我們已經看到,可以在URL規則中指定http方法。URL對映的函式接收到的表單資料可以以字典物件的形式收集,並將其轉發給模板以在相應的網頁上呈現它。
在以下範例中,URL => /
呈現具有表單的網頁(student.html)。填充的資料會提交到觸發result()
函式的URL => /result
中。
results()
函式收集字典物件中request.form
中存在的表單資料,並將其傳送給result.html 並顯示出來。
該模板動態呈現表單資料的HTML表格。
下面給出的是Python的應用程式程式碼 -
from flask import Flask, render_template, request
app = Flask(__name__)
@app.route('/')
def student():
return render_template('student.html')
@app.route('/result',methods = ['POST', 'GET'])
def result():
if request.method == 'POST':
result = request.form
return render_template("result.html",result = result)
if __name__ == '__main__':
app.run(debug = True)
以下是 student.html 的HTML指令碼的程式碼。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Flask範例</title>
</head>
<body>
<form action = "http://localhost:5000/result" method = "POST">
<p>姓名 <input type = "text" name = "Name" /></p>
<p>物理分數: <input type = "text" name = "Physics" /></p>
<p>化學分數: <input type = "text" name = "Chemistry" /></p>
<p>數學分數: <input type ="text" name = "Mathematics" /></p>
<p><input type = "submit" value = "提交" /></p>
</form>
</body>
</html>
模板程式碼(result.html)在下面給出 -
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Flask範例</title>
</head>
<body>
<table border = 1>
{% for key, value in result.items() %}
<tr>
<th> {{ key }} </th>
<td> {{ value }} </td>
</tr>
{% endfor %}
</table>
</body>
</html>
執行Python指令碼,並在瀏覽器中輸入URL => http://localhost:5000/
。結果如下所示 -
當點選提交按鈕時,表單資料以HTML表格的形式呈現在result.html 中,如下所示 -