目录
- URL定义
- request获取请求参数
gitcode地址:
https://gitcode.com/qq_43920838/flask_project.git
URL定义
from flask import Flaskapp=Flask(__name__)@app.route('/')
def hello_world():return 'Hello World!'@app.route('/profile')
def profile():return '我是个人中心!'if __name__ == '__main__':app.run(debug=True)
有参url也叫做动态路由
request获取请求参数
URL传参