flask后端开发(2):URL与视图

目录

gitcode地址:
https://gitcode.com/qq_43920838/flask_project.git

URL定义

bash 复制代码
from flask import Flask

app=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传参


相关推荐
头发还在的女程序员40 分钟前
三天搞定招聘系统!附完整源码
开发语言·python
温轻舟1 小时前
Python自动办公工具06-设置Word文档中表格的格式
开发语言·python·word·自动化工具·温轻舟
花酒锄作田1 小时前
[python]FastAPI-Tracking ID 的设计
python·fastapi
AI-智能1 小时前
别啃文档了!3 分钟带小白跑完 Dify 全链路:从 0 到第一个 AI 工作流
人工智能·python·自然语言处理·llm·embedding·agent·rag
空白诗2 小时前
mdcat 在 HarmonyOS 上的构建与适配
后端·安全·华为·rust·harmonyos
y***61312 小时前
SpringBoot集成Flowable
java·spring boot·后端
d***95622 小时前
爬虫自动化(DrissionPage)
爬虫·python·自动化
i***22072 小时前
springboot整合libreoffice(两种方式,使用本地和远程的libreoffice);docker中同时部署应用和libreoffice
spring boot·后端·docker
APIshop2 小时前
Python 零基础写爬虫:一步步抓取商品详情(超细详解)
开发语言·爬虫·python