美文网首页
python 装饰器

python 装饰器

作者: Lupino | 来源:发表于2020-12-03 23:27 被阅读0次

在使用 web 框架的时候,我们每个路由上都有个 @xxx 的函数。

这个函数就是装饰器。

那么装饰器有啥作用呢?

装饰器可以对函数进行一些预处理, 比如做一些缓存,做路由啊,做权限啊,等等都可以。

没有装饰器的时候我们代码是怎么写的?

def some_route(arg1):
    u = get_user(arg1)
    check_perm(u)
    return 'some thing'

def some_route1(arg1):
    u = get_user(arg1)
    check_perm(u)
    return 'some thing'

有了装饰器代码变简洁了

def check_perm(func):
    def _check_perm(arg1):
        u = get_user(arg1)
        my_check_perm(u)
        return func(arg1)
    return _check_perm

@check_perm
def some_route(arg1):
    return 'some thing'

@check_perm
def some_route1(arg1):
    return 'some thing'

修饰器是怎么执行的呢?

我们换种写法

def check_perm(func):
    def _check_perm(arg1):
        u = get_user(arg1)
        my_check_perm(u)
        return func(arg1)
    return _check_perm

def _some_route(arg1):
    return 'some thing'

some_route = check_perm(_some_route)

def _some_route1(arg1):
    return 'some thing'

some_route = check_perm(_some_route1)

这个就是修饰器的基本原理。

写到这里,今天修饰器的介绍也基本完成了。

大家,发挥自己的想象力,使用愉快

相关文章

  • 装饰器模式

    介绍 在python装饰器学习 这篇文章中,介绍了python 中的装饰器,python内置了对装饰器的支持。面向...

  • python中的装饰器

    python装饰器详解 Python装饰器学习(九步入门) 装饰器(decorator) 就是一个包装机(wrap...

  • [译] Python装饰器Part II:装饰器参数

    这是Python装饰器讲解的第二部分,上一篇:Python装饰器Part I:装饰器简介 回顾:不带参数的装饰器 ...

  • Python中的装饰器

    Python中的装饰器 不带参数的装饰器 带参数的装饰器 类装饰器 functools.wraps 使用装饰器极大...

  • Python进阶——面向对象

    1. Python中的@property   @property是python自带的装饰器,装饰器(decorat...

  • Python 装饰器填坑指南 | 最常见的报错信息、原因和解决方

    Python 装饰器简介装饰器(Decorator)是 Python 非常实用的一个语法糖功能。装饰器本质是一种返...

  • Python装饰器

    Python装饰器 一、函数装饰器 1.无参装饰器 示例:日志记录装饰器 2.带参装饰器 示例: 二、类装饰器 示例:

  • python3基础---详解装饰器

    1、装饰器原理 2、装饰器语法 3、装饰器执行的时间 装饰器在Python解释器执行的时候,就会进行自动装饰,并不...

  • 2019-05-26python装饰器到底是什么?

    装饰器例子 参考语法 装饰器是什么?个人理解,装饰器,是python中一种写法的定义。他仍然符合python的基本...

  • 2018-07-18

    Python装饰器 装饰,顾名思义,是用来打扮什么东西的。Python装饰...

网友评论

      本文标题:python 装饰器

      本文链接:https://www.haomeiwen.com/subject/gdzvwktx.html