- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下模型:
class Project(models.Model):
title = models.CharField(max_length="100")
pub_date = models.DateField(auto_now_add=True, editable=False)
budget = models.IntegerField()
class Milestone(models.Model):
title = models.CharField(max_length="50")
budget_percentage = models.IntegerField(max_length=2)
project = models.ForeignKey(Project)
在项目的创建表单中,我包含了里程碑的内联表单集。
我想验证提交项目时,至少创建了 4 个里程碑,并且所有里程碑的 budget_percentage 总和为 100
这是我的表格:
class BaseMilestoneProjectFormSet(BaseFormSet):
def clean(self):
if any(self.errors):
# Don't bother validating the forms unless each form is valid on its own
return
if len(self.forms) < REQUIRED_MILESTONES:
raise forms.ValidationError("At least %s milestones need to be created" % REQUIRED_MILESTONES)
# Set initial control variables
# Total percentage of budget to control
total_percentage = 0
# Date to control that milestones are linear, i.e. that second milestone isn't delivered before first
current_control_date = date.min
for i, form in zip(range(len(self.forms)), self.forms):
if i == 0 and form.budget_percentage > MAX_BUDGET_FIRST_MILESTONE:
raise forms.ValidationError("First milestone budget must not exceed %s percentage" % MAX_BUDGET_FIRST_MILESTONE)
elif form.budget_percentage > MAX_BUDGET_MILESTONE:
raise forms.ValidationError("Milestone's budget must not exceed %s percentage" % MAX_BUDGET_MILESTONE)
if form.estimated_delivery_date < current_control_date:
raise forms.ValidationError("Milestones must be linear, check your delivery dates")
# Set control variables for next iteration
current_control_date = form.estimated_delivery_date
total_percentage += form.budget_percentage
if total_percentage != 100:
raise forms.ValidationError("All milestones budget percentage should sum up to 100%")
当我提交包含 3 个空里程碑表单的表单时,它不会对第一个表单执行任何操作 forms.ValidationError(...)
我已经用 raise Exception() 验证了它实际上进入了 if,但它继续进行,就好像什么都没发生一样。
这是我的代码中的错误还是对 ValidationError 概念的误解?
任何帮助将不胜感激,提前致谢。
编辑:
我正在添加缺少的 View 代码
class DelayedModelFormMixin(ModelFormMixin):
def form_valid(self, form):
self.object = form.save(commit=False)
self.prepare_object_for_save(self.object)
self.object.save()
if hasattr(self.object, "save_m2m"):
self.object.save_m2m()
return super(ModelFormMixin, self).form_valid(form)
def prepare_object_for_save(self, obj):
pass
class ProjectNew(CreateView, DelayedModelFormMixin):
model = Project
success_url = '/projects/project/%(slug)s'
form_class = ProjectForm
@method_decorator(login_required)
def dispatch(self, request, *args, **kwargs):
return super(ProjectNew, self).dispatch(request, *args, **kwargs)
def prepare_object_for_save(self, obj):
obj.owner = self.request.user
# Code for stacked milestones and rewards
context = self.get_context_data()
milestone_form = context['milestone_formset']
reward_form = context['reward_formset']
if milestone_form.is_valid() and reward_form.is_valid():
self.object = form.save()
milestone_form.instance = self.object
milestone_form.save()
reward_form.instance = self.object
reward_form.save()
return HttpResponseRedirect(success_url)
def form_invalid(self, form):
return self.render_to_response(self.get_context_data(form=form))
def get_context_data(self, **kwargs):
context = super(ProjectNew, self).get_context_data(**kwargs)
if self.request.POST:
context['milestone_formset'] = MilestoneFormSet(self.request.POST)
context['reward_formset'] = RewardFormSet(self.request.POST)
else:
context['milestone_formset'] = MilestoneFormSet()
context['reward_formset'] = RewardFormSet()
return context
最佳答案
如果我理解你的问题,问题是你正在计算表单集中有多少表单,但你想要/需要计算多少 BOUND表单在表单集中。
所以,我认为你需要更改这一行:
if len(self.forms) < REQUIRED_MILESTONES:
对于这些行:
bounded_forms = filter(lambda form:form.isbound(), self.forms)
if len(bounded_forms) < REQUIRED_MILESTONES:
然后您可以在执行时引发验证错误。
编辑:
也许您不了解表单集验证的工作原理。可能是this可以帮助,特别是这个短语:
The formset clean method is called after all the Form.clean methods have been called. The errors will be found using the non_form_errors() method on the formset.
如果我明白你说的意思
When I submit the form with 3 empty milestones forms it doesn't do nothing about the first forms.ValidationError(...)
那么,您将看不到引发的错误。因此,寻找它们的地方是表单集“non_form_errors”方法。在您的模板中放入类似这样的内容:
<span>{{milestone_formset.non_form_errors}}</span>
现在您应该看到您在里程碑表单集清理方法中引发的错误。
希望对您有所帮助!
关于django - 提高形式。ValidationError 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10867244/
提交 Django 表单时出现 ValidationError。 在我的表单中,这是我的输入:01/01/2017但是 django 告诉我格式必须是 'AAAA-MM-GG'。 出现此异常位置:/u
几天以来我遇到了麻烦。我正在学习 MEAN 堆栈,但是在使用 mongoose 模式在 mongo 上创建用户期间,我遇到了这个问题: (node:93337) UnhandledPromiseRej
由于创建了一个架构强制器,然后尝试强制一组数据,我得到的结果是: #schema.utils.ErrorContainer{:error #} 如何获得实际验证错误的解释? 最佳答案 您可以找到Val
我正在覆盖方法 clean_: def clean_password(self): value_password = self.cleaned_data.get('password')
我无法在表单中显示错误。 假设我的表单有 2 个字段,只有当它们都为空时才不需要,但我们不能出现只有一个字段有值的情况。所以我尝试在 View 中进行此验证,然后引发异常,一切都很好,但是错误作为带有
我正在编写一个 Django 命令来从我的应用程序中删除超过 x 天的数据。 使用以下内容进行过滤: qs = Data.objects.filter(date_created__lte=timezo
假设我有一个简单的 Django 模型: class Transaction(models.Model): description = models.CharField('descrip
我遇到了 ValidationError 问题。 forms.py from django import forms class life_contract_data(forms.Form):
我是编程和 Django 的新手。我正在尝试测试我的功能之一以确保引发验证错误。测试确认出现了错误,但也表示测试失败。这怎么可能? **models.py** def check_user_words
我想测试是否引发了异常,我该怎么做? 在我的 models.py 中我有这个函数,我想测试的那个: def validate_percent(value): if not (value >
我正在测试处理无效表单数据的 View 。在我的测试用例中,我正在提交缺少字段的表单,并期望 View 通过显示错误消息来处理它。这是我表单中 clean 的相关片段: 表格: def clean(s
我有一个带有 ValidationError 的模型约束: class MyModel(models.Model) title = models.CharField() d
我有以下模型: class Project(models.Model): title = models.CharField(max_length="100") pub_date = m
const student = db.define('student',{ //This is a model name: { type: datatype.STRING(4
我有一个表单,必须在提交之前检查一些事情,以确保数据有效。在我进行一些更改(从基于类的 View 到基于函数的 View )之前,一切正常,但是当我回去测试所有内容时,我注意到一个非常重要的部分没有正
目前,我正在 Play 框架 Java 中实现自定义验证。我有一个包含元素列表的类: public class StandardRequest{ ... private List materials;
当测试传递给它的无效文件的 ImageField 时,Django 断言不会引发ValidationError。这是在 with self.assertRaises 上下文中完成的。但是,当我访问 f
如果验证失败 Controller 返回这个错误: if (deviceinstance.StorageId == (int)Storage.Biurko & deviceinstance.MeAsU
我创建了一个绑定(bind)了一些文本框的 WPF 应用程序。我使用验证错误来检查值是否正确。验证查找数据库以查看输入的数据是否存在。 如果我输入一个假值,我的验证错误会捕获错误 whitout 问题
我最近尝试了表单验证并遇到了 ValidationError() 的问题。 当我提交表单时,表单错误没有出现在我的网站上。 代码如下: 表单.py class ArticleForm(forms.Mo
我是一名优秀的程序员,十分优秀!