如何将消息与第三方视图一起使用?
我使用 django.contrib.messages 实现了一个通知栏。现在,我想扩展它的用途,例如显示“欢迎回来”或“注销成功”消息。但是,我更喜欢使用内置视图进行基本操作,因此我使用 django.contrib.auth.views.logout_then_login 进行注销,并使用 django.contrib.auth.views.login 进行注销> 用于登录。因此,没有一个地方可以插入我的 messages.success(...)
,因为这些视图不是我的。
有没有一种优雅的方式来添加这些消息而不复制或覆盖视图?
I've implemented a notification bar using django.contrib.messages
. Now, I want to make extended use of it, e.g. to display a "Welcome back" or "Logout successful" messages. However, I prefer to use builtin views for basic actions, so I use django.contrib.auth.views.logout_then_login
for logging out and django.contrib.auth.views.login
for logging in. Therefore, there isn't a single place where I could insert my messages.success(...)
, since those views are not mine.
Is there an elegant way to add those messages nevertheless without copying or overwriting views?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
信号是你的朋友。特别请参阅登录和注销信号。
Signals are your friends. See in particular the login and logout signals.