django 1.3在models.IntegerField上设置自定义error_messages似乎不起作用

时间:2014-01-17 17:45:14

标签: python django forms

对django 1.3应用程序进行一些维护。

有一个类应用程序(amonst others)和IntegerField:

area = models.IntegerField()

他们想要为无效条目提供不同的错误消息。 在筛选完所有文档并尝试了许多方法之后,我还没有设法解决这个问题。

例如我试过:

area = models.IntegerField(error_messages={'invalid': 'Custom message'})

此外:

class ApplicationForm(ModelForm):
    area = forms.IntegerField({'invalid': 'Custom message'})

    class Meta:
        model = Application
        fields = ('...) #all the other fields go here

其他方法也不起作用。我总是得到标准的“输入整数”。错误信息。

0 个答案:

没有答案