本文介绍了如何在自定义UserChangeForm中覆盖用户名的django'unique'错误消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想覆盖默认的具有该用户名的用户已经存在。在我自定义的 c , c $ c>, min_length 错误消息是可定制的。

So, to summarize, for your username field only required, invalid, max_length, min_length error messages are customizeable.

您只能设置唯一模型字段级别的错误消息(请参阅)。

You can only set unique error message on a model field level (see source).

另请参阅相关。

另请参阅(注意自定义 duplicate_username 错误消息) - 自定义错误消息可能是

Also see how django.contrib.auth.forms.UserCreationForm was made (pay attention to custom duplicate_username error message) - custom error message could be an option for you too.

希望有所帮助。

这篇关于如何在自定义UserChangeForm中覆盖用户名的django'unique'错误消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 21:19