编辑以下文件设计 api 端点 api/app.py 和 api/blueprint.py
api/app.py
api/blueprint.py
后端主路由返回的数据
用get方法获取数据
单个路由可以同时处理get和post的数据
可以通过blueprint方法,在 app.py 之外的文件设计api
在blueprint创建新的路由,用 g 方法保存临时数据
用post方法传递和返回数据(需要post方法)
单个路由可以同时处理get和post的数据(需要post方法)