如何将消息与第三方视图一起使用?

发布于 2024-11-27 18:06:19 字数 299 浏览 0 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月朦胧 2024-12-04 18:06:19

信号是你的朋友。特别请参阅登录和注销信号

Signals are your friends. See in particular the login and logout signals.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文