Django:显示管理员验证错误的自定义错误消息
我正在使用 Django 1.2.4。我有一个模型,其中有一个需要验证的字段。当验证失败时,我想向用户显示自定义错误消息。模型编辑是在管理界面中完成的。
这就是我目前正在做的事情:
def clean_fields(self, exclude=None):
# do validation
if problem:
raise ValidationError({'field_name': "error message"})
不幸的是,这一切所做的只是在管理页面上为 field_name
值中的每个字符打印出单独的验证消息。
发出我想要的错误消息的正确方法是什么?
I'm using Django 1.2.4. I have a model that has a field that needs to be validated. When validation fails, I'd like to display a custom error message to the user. Model editing is done in the admin interface.
This is what I'm doing currently:
def clean_fields(self, exclude=None):
# do validation
if problem:
raise ValidationError({'field_name': "error message"})
Unfortunately, all this does is print out a separate validation message on the admin page for each character in the value of field_name
.
What is the proper way to signal the error message I want?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不看,听起来管理员正在寻找一个可迭代对象作为
field_name
的值。尝试:我认为管理员希望任意数量的验证消息与表单上的每个字段相关联。
Without looking, it sounds like the admin is looking for an iterable as the value for
field_name
. Try:I think the admin expects any number of validation messages to be associated with each field on a form.