我正面临一个与django有关的奇怪问题。似乎当我在formset上运行is_valid()时,每个子表单的一个值设置为None。为了检查这个,我把两个调试行打印出cleaning_data dict。一个在cleaning_qty()的末尾,另一个在is_valid()之后。
以下是表格:
class ProductsForm(forms.Form):
product_ref = forms.CharField(max_length=6, widget=forms.HiddenInput)
product_name = forms.CharField(max_length=200, widget=forms.HiddenInput)
unit = forms.CharField(max_length=16, widget=forms.HiddenInput)
qty = forms.DecimalField(max_digits=6, decimal_places=3,
widget=forms.TextInput(attrs={'size': 5}))
def clean_qty(self):
data = self.cleaned_data
if data['qty'] < 0:
raise ValidationError('La quantité doit être positive')
unit = Unit.objects.get(pk=data['unit'])
if not unit.accept_dec and '.' in str(data['qty']) \
and int(str(data['qty']).split('.')[1]) != 0:
raise ValidationError('La quantité doit être entière')
print "!!!" + str(data) + "!!!"
ProductsFormSet = formsets.formset_factory(ProductsForm, extra=0,
can_delete=True)
以下是观点的开头:
def cart(request):
if request.method == 'POST':
products_formset = ProductsFormSet(request.POST, prefix='products')
cart_form = CartForm(request.POST, prefix='cart')
if products_formset.is_valid() and cart_form.is_valid():
'''
Create and save the cart
Send a confirmation email
'''
for form in products_formset:
print "???" + str(form.cleaned_data) + "???"
我提交表单时的结果:
DEBUG:django.db.backends:(0.000) SELECT `catalog_unit`.`value`, `catalog_unit`.`plural_val`, `catalog_unit`.`accept_dec` FROM `catalog_unit` WHERE `catalog_unit`.`value` = 'Truc' ; args=(u'Truc',)
!!!{'product_ref': u'BDL233', 'product_name': u'Bidule', 'unit': u'Truc', 'qty': Decimal('2.2')}!!!
DEBUG:django.db.backends:(0.001) SELECT `catalog_unit`.`value`, `catalog_unit`.`plural_val`, `catalog_unit`.`accept_dec` FROM `catalog_unit` WHERE `catalog_unit`.`value` = 'Truc' ; args=(u'Truc',)
!!!{'product_ref': u'MCH024', 'product_name': u'Machin', 'unit': u'Truc', 'qty': Decimal('1.3')}!!!
DEBUG:django.db.backends:(0.000) SELECT `catalog_unit`.`value`, `catalog_unit`.`plural_val`, `catalog_unit`.`accept_dec` FROM `catalog_unit` WHERE `catalog_unit`.`value` = 'Chacal' ; args=(u'Chacal',)
!!!{'product_ref': u'CHO127', 'product_name': u'Chouette', 'unit': u'Chacal', 'qty': Decimal('3')}!!!
???{'DELETE': False, 'product_ref': u'BDL233', 'product_name': u'Bidule', 'unit': u'Truc', 'qty': None}???
???{'DELETE': False, 'product_ref': u'MCH024', 'product_name': u'Machin', 'unit': u'Truc', 'qty': None}???
???{'DELETE': False, 'product_ref': u'CHO127', 'product_name': u'Chouette', 'unit': u'Chacal', 'qty': None}???
如您所见,唯一的区别是qty设置为None。
我不知道这种行为可能来自何处。
先谢谢你的光。
答案 0 :(得分:2)
所有clean_FIELD
方法必须返回正在验证的值。因此,您的clean_qty
方法应该有return data['qty']
。