Django:如何显示自定义操作中的错误?
显示自定义操作中发生的错误的错误消息的最佳实践是什么?
What's the best practice for displaying an error message for errors that occurred in a custom action?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用消息框架。描述位于
您刚刚使用的自定义操作中的此处
Use messages framework. The description is here
in custom action you just use
添加错误消息到 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.