Django 视图中的 try/ except 自定义字段错误?

发布于 2024-11-15 18:48:52 字数 140 浏览 7 评论 0原文

我的应用程序中有一个用于对地址进行地理编码的表单。如果输入非地址,地理编码器将引发“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 技术交流群。

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

发布评论

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

评论(1

勿忘心安 2024-11-22 18:48:52

您应该编写一个 clean_field_name 方法,并在其中捕获错误并引发 ValidationError 例如

class MyForm(forms.Form):
    ...
    # rest of the form
    ...

    def clean_address(self):
        address = self.cleaned_data['address']
        try:
            address = geo_clean(address)
        except GQueryError,e:
            raise forms.ValidationError("ooops you are so wrong, %s!"%e)

        return address

阅读 如何清理特定字段

You should write a clean_field_name method and in it capture the error and raise a ValidationError e.g

class MyForm(forms.Form):
    ...
    # rest of the form
    ...

    def clean_address(self):
        address = self.cleaned_data['address']
        try:
            address = geo_clean(address)
        except GQueryError,e:
            raise forms.ValidationError("ooops you are so wrong, %s!"%e)

        return address

Read how to clean specific fields

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