Flask-RESTful别名

时间:2016-05-25 11:54:46

标签: python flask flask-restful

我想在两个资源之间创建一个别名。

from flask import Flask
from flask_restful import Api, Resource

class api_v1_help(Resource):
    def get(self):
        html_file = "API V1"
        return (html_file, 200, {'Content-Type': 'text/html; charset=utf-8'})

class api_v2_help(Resource):
    def get(self):
        html_file = "API V2"
        return (html_file, 200, {'Content-Type': 'text/html; charset=utf-8'})


app = Flask(__name__)
api = Api(app)

# API (current)
api.add_resource(api_v1_help, '/api/help')

# API v1
api.add_resource(api_v1_help, '/api/v1/help')

# API v2
api.add_resource(api_v2_help, '/api/v2/help')

if __name__ == '__main__':
    # Start app
    app.run(debug=True,port=5000)

这会出现以下错误:AssertionError:视图函数映射正在覆盖现有端点函数:api_v1_help

我可以像这样更改代码:

api.add_resource(api_v1_help, '/api/help', '/api/v1/help') 

但我想知道是否还有另一种解决方案,通过将两个API端点链接到同一个函数来处理别名?

我搜索对特定API版本的调用进行分组。

1 个答案:

答案 0 :(得分:0)

改为使用Flask.add_url_route

# API v1
api.add_resource(api_v1_help, '/api/v1/help')

# API v2
api.add_resource(api_v2_help, '/api/v2/help')

# API (current)
app.add_url_rule('/api/help', endpoint='api_v1_help')

默认情况下,endpoint设置为the name of the view class,因此您可以在'api_v1_help'来电后使用add_resource作为名称。