管理员中的 post_save
我有一个专门与管理员一起使用的应用程序。
我想每次创建/修改新对象时发送一封电子邮件,从我的搜索来看,使用 post_save 似乎是最好的方法。
不幸的是,该文档对此并不太清楚......
有人可以解释一下吗?也许有一个例子?
谢谢
I have a application that i exclusively use with the admin.
I would like to send an email every time that a new object is created/modified, from my search, it seems that using the post_save would be the best way.
Unfortunately the doc is not really clear on that...
Can someone explain me > maybe with an example ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两种方法。要么覆盖保存函数,要么使用信号。
请参阅以下优秀帖子:
有关使用 save 的简单类似示例,请查看我之前的答案:
当通过管理站点修改 Django CharField 时发送电子邮件通知
There are two ways. Either override the save function or use signals.
See the following excellent posts:
For a simple similar example using save have a look at my previous answer:
Send an e-mail notification when a Django CharField is modified via the admin site