flask-restful学习笔记
python-flask学习笔记
官方:https://flask-restful.readthedocs.io/en/latest/quickstart.html
参考:https://blog.csdn.net/u012887259/article/details/108989452
需要解决的问题
- endpoint的作用
api.add_resource(Todo,'/todo/<int:todo_id>', endpoint='todo_ep')
官方:https://flask-restful.readthedocs.io/en/latest/quickstart.html
参考:https://blog.csdn.net/u012887259/article/details/108989452
api.add_resource(Todo,'/todo/<int:todo_id>', endpoint='todo_ep')