django - 禁用表单中的字段验证
我需要在 ModelForm 中禁用字段验证。我希望此验证不验证某些字段。当我想返回带有附加字段的更复杂的表单时,我会遇到一些情况(AJAX 渲染表单)。我将 POST 传递到表单并渲染新的表单并保存帖子字段。添加了一些新字段,但无法对其进行验证。我将标志传递给表格并识别它何时发生。 我应该在一些干净的功能中做到这一点吗?
I need to disable field validation in ModelForm. I want this validation not to validate some field. I have some situations (AJAX rendering form) when I want to return more complex form with additional fields. I pass POST to the form and render new one with post fields saved. Some new fields are added and they can't be validated. I pass flag to form and recognize when it happens.
Should I make it in some clean functions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需用空函数覆盖验证函数即可
Just override the validation function with empty function
如果模型字段的 Blank=True,则表单字段上的 required 将设置为 False。否则,required=True。
If the model field has blank=True, then required is set to False on the form field. Otherwise, required=True.