Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Flask Web 框架编写通用视图的最佳方式是什么?
@app.route 装饰器是否支持可调用类?还是我以完全错误的方式思考这个问题?
任何帮助或建议将不胜感激!
从 Python 2.6 开始,您也可以将装饰器应用于类。可调用类没有内置模式,因为实现它们的方法太多,但本质上,诀窍是覆盖__call__类并拥有一个实例化类的包装器装饰器。
__call__
我正计划有一个基于类的视图扩展,但到目前为止没有人想出一些好的行为:)