编辑以下文件设计 api 端点 api/app.py 和 api/blueprint.py

Next.js Logo
点击下方卡片试用测试Api  Github地址

/ ->

后端主路由返回的数据

/get ->

用get方法获取数据

/double ->

单个路由可以同时处理get和post的数据

/blueprint ->

可以通过blueprint方法,在 app.py 之外的文件设计api

/blueprint/useg ->

在blueprint创建新的路由,用 g 方法保存临时数据

/post ->

用post方法传递和返回数据(需要post方法)

/double ->

单个路由可以同时处理get和post的数据(需要post方法)