Django 视图中的 try/ except 自定义字段错误?
我的应用程序中有一个用于对地址进行地理编码的表单。如果输入非地址,地理编码器将引发“GQueryError”。使用 try/ except 我想捕获此错误并将自定义错误发送回表单,该错误将像其他错误一样显示在“错误列表”中,并进行适当的显示和样式设置。这可以做到吗?
I have a form for geocoding an address in my app. If a non-address is entered, the geocoder raises a "GQueryError". Using try/except I'd like to catch this error and send a custom error back to the form that would show up in the "errorlist" like the other errors and be appropriately displayed and styled. Can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该编写一个
clean_field_name
方法,并在其中捕获错误并引发ValidationError
例如阅读 如何清理特定字段
You should write a
clean_field_name
method and in it capture the error and raise aValidationError
e.gRead how to clean specific fields