method_decorators用法

装饰视图。
用于API类在处理实际HTTP方法之前做相关数据处理,用户验证,日志记录等装饰器操作

使用方法:

from .comm.wrappers import api, Resource
from functools import wraps

#定义装饰器方法
def auth_user(func):
    @wraps(func)
    def wrapper(*args, **wargs):
        # func_code  用来处理数据或进行其他操作的具体代码
        return func(*args, **wargs)  #带参数返回
    return wrapper

class UserInfoSetting(Resource):
    method_decorators = [auth_user]  #将装饰器方法添加在操作类中
    def get(self, *args, **wargs):
        pass

在API类中添加了

method_decorators = [func_name]

这一句以后,函数执行到API下的具体HTTP方法之前会先执行装饰器操作, 并且执行装饰器操作时可以调用所有传给API的参数,并对其进行操作

实际使用:
1、公司腕表信息修改 API中提供多个不同的类对不同数据进行修改,每次修改前都需要验证get请求中的user_id以及watch_id是否存在数据库中,如果不存在则返回指定的错误页面

链接http://flask-restful.readthedocs.io/en/latest/extending.html

你可能感兴趣的:(method_decorators用法)