Django:如何显示自定义操作中的错误?

发布于 2024-12-04 09:08:04 字数 34 浏览 0 评论 0原文

显示自定义操作中发生的错误的错误消息的最佳实践是什么?

What's the best practice for displaying an error message for errors that occurred in a custom action?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

睫毛上残留的泪 2024-12-11 09:08:04

使用消息框架。描述位于

您刚刚使用的自定义操作中的此处

messages.info(request, 'Message')

Use messages framework. The description is here

in custom action you just use

messages.info(request, 'Message')
稚然 2024-12-11 09:08:04

添加错误消息到 contrib 消息应用程序?它将在用户看到的下一个请求/下一页时显示在页面顶部。请务必将消息类型设置为错误。另外,请确保在事务中运行该操作并在出现错误时回滚。

add an error message to the contrib messages app? It will be displayed at the top of the page on next request/ next page the user sees. Be sure to set the message type as error. Also, be sure to run the action in a transaction and roll it back on error.

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