我正在尝试编写一种clean
方法,该方法验证3个字段(百分比)是否总计为零。我遵循django documentation,并将clean()方法添加到我的表单类中,但是Django在表单提交后仍会重定向,指示is_valid()函数已成功传递。
似乎clean
方法只是由Django is_valid()
调用的,不允许表单提交...
已经签出了类似的answer但没有运气。
forms.py
class RequirementsForm(forms.ModelForm):
class Meta:
model = Profile
fields = ('cal_req',
'prot_bool',
'carb_bool',
'fat_bool',
'stf_bool',
'fib_bool',
'sug_bool',
'sod_bool',
'cho_bool',
'clc_bool',
'irn_bool',
'vta_bool',
'vtc_bool',
'prot_perc',
'carb_perc',
'fat_perc',
'stf_g_thr',
'fib_g_req',
'sug_g_thr',
'sod_mg_thr',
'cho_mg_thr',# must opt-in for dietary cholesterol reqs. But default is 300 / Decimal(2000)
'clc_mg_req',
'irn_mg_req',
'vta_mcg_req',
'vtc_mg_req' )
def clean(self):
cleaned_data = super().clean()
prot_perc = cleaned_data.get('prot_perc')
fat_perc = cleaned_data.get('fat_perc')
carb_perc = cleaned_data.get('carb_perc')
if sum([prot_perc, fat_perc, carb_perc]) != 1.0:
raise forms.ValidationError(_('Macro percents must add up to 1!')_)
views.py
@login_required(login_url='/login/')
def questionaire(request):
prof, created = Profile.objects.get_or_create(user=request.user) # Careful, this clashes with the reciever in models.py
if created:
prof.save()
if request.method=='POST': # Will post requirements form
req_form = RequirementsForm(request.POST, instance=prof)
if req_form.is_valid():
req_form.save()
return HttpResponseRedirect('/')
else:
req_form = RequirementsForm(instance=prof)
context={'req_form':req_form, 'prof':prof}
return render(request, 'core/questionaire_form.html', context)
form.html
</tr>
<tr>
<th class ='type_label' colspan=6>Macronutrients</th>
</tr>
<tr>
<td class="bool_col"></td>
<td class="nm_col">Protein</td>
<td class="micro_input">
{{req_form.prot_perc}}
</td>
<td>%</td>
<td><input id="prot_g" ></input></td>
<td>{{req_form.prot_perc.errors</td>
</tr>
<tr>
<td class="bool_col"></td>
<td class="nm_col">Fat</td>
<td class="micro_input"> {{req_form.fat_perc}}</td>
<td id="unit1">%</td>
<td><input id="fat_g" ></input></td>
<td></td>
</tr>
<tr>
<td class="bool_col"></td>
<td class="nm_col">Carbohydrates</td>
<td class="micro_input"> {{req_form.carb_perc}}</td>
<td id="unit1">%</td>
<td><input id="carb_g"></input></td>
<td></td>
</tr>
答案 0 :(得分:0)
这是一个简单的缩进错误。 clean函数应该直接在类RequirementsForm