MethodView和资源有什么区别?
通过flask-restful实现API:
class API(Resource):
decorators = [...,]
def get(self):
# do something
def post(self):
# do something
def put(self):
# do something
def delete(self):
# do something
实际上,它可以替换为flask:
class API(MethodView):
我在几个项目中都使用过烧瓶,但在创建restul时从未使用过烧瓶--restful包--所以我想我应该试一试。
然而,我遇到了一个我无法理解的奇怪的错误--而且API根本不起作用。错误信息显示
{
"message": "Not Found. You have requested this URI [/api/v1.0/items] but did you mean /api/v1.0/items ?",
"status": 404
}
run.py
from my_project import app
if __name__