赞
踩
属性 | 解释 |
---|---|
form | 字典对象,包含表单的参数、值、键值对 |
args | 解析查询字符串的内容,是问号(?)之后的 url 的一部分 |
cookies | 字典对象,保存 cookie 的名称和值 |
files | 与上传文件有关的数据 |
method | 当前请求的方法,如:POST、GET |
实现效果:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>学生信息表</title>
</head>
<body>
<form action="/result" method="POST">
<p>name <input type="text" name="name"/></p>
<p>sex <input type="text" name="sex"/></p>
<p>age <input type="text" name="age"/></p>
<p><input type="submit" value="submit"/></p>
</form>
</body>
</html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>结果列表</title> </head> <body> <table border="1" cellspacing="0" cellpadding="2"> {% for key, value in result.items() %} <tr> <th> {{ key }}</th> <td> {{ value }}</td> </tr> {% endfor %} </table> </body> </html>
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)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。