flask-restful中url_for的使用

资源路径定义如下:

api.add_resource(UserResource,'/users/<int:id>', endpoint='get_user', methods=['GET'])

使用flask中的url_for

print flask.url_for('api.get_user', id = '123')

或者使用flask-restful中包装后的url_for

print api.url_for(UserResource, id = '123')

输出:/api/users/12

参考http://stackoverflow.com/questions/24223628/how-do-i-use-flask-url-for-with-flask-restful

你可能感兴趣的:(flask-restful中url_for的使用)