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.
我使用 patch_list 方法来保存和删除我的资源。目前,我需要一种在将响应发送到客户端之前调用整个列表上的外部过程的方法。
有没有比将 patch_list 的代码复制并粘贴到我的源代码中并修改它更好的方法?列表级别是否有一些钩子?
有一个钩子 - alter_list_data_to_serialize。在创建响应之前调用它。
def alter_list_data_to_serialize(self, request, data): #call external procedure here return data
data 是要序列化的列表。