在 blueprint 里面使用flask_Restful


不知什么原因,在blueprint里面使用flask Restful好像必须严格按照以下顺序进行:

1. 创建Resource之后,先调用 api.add_resource;

2. 注册 blueprint 之前,要先初始化 api,但是不能使用 app 作为参数,而要使用 blueprint 作为参数;

3. 最后再注册 bluepprint。

你可能感兴趣的:(在 blueprint 里面使用flask_Restful)