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.
我需要在quart(python web 框架)中存储一些每个请求的指标和遥测数据(例如时间戳等)。修改quart.request和添加变量是否可以接受?
quart.request
它似乎有效,并且类似于我在 Flask 中的做法,但我不确定它是否被认为是Quart.
Quart
背景是我想存储细粒度的遥测数据(即请求中某些事情发生时的时间戳),而不仅仅是总请求时间。
问候, 尼克拉斯
是的,最好扩展 Request 类,然后将这个新类分配给app 对象request_class上的属性
request_class