2020年5月28日

flask-restplus 知识点

摘要: Request parsing:https://flask-restplus.readthedocs.io/en/stable/api.html?highlight=store_missing#module-flask_restplus.reqparse 资料 网址 官方搜索页(搜索比较方便) ht 阅读全文

posted @ 2020-05-28 21:10 cag2050 阅读(528) 评论(0) 推荐(0) 编辑

Python 内置的装饰器

摘要: Python 内置的装饰器 作用 @property 把一个方法变成属性调用 @classmethod 装饰的函数不需要实例化,不需要 self 参数,但第一个参数需要是表示自身类的 cls 参数,可以来调用类的属性,类的方法,实例化对象等。 阅读全文

posted @ 2020-05-28 17:58 cag2050 阅读(133) 评论(0) 推荐(0) 编辑

导航