Django version 1.7.0 - I know I know :)
Python 2.7.13
- Paul
Which Python and Django versions do you use?
Etienne
Le 2017-10-27 à 23:27, Paul Kenjora a écrit :
--Hi,
When setting HiddenInput on a form widget for an integer model field with choices, in tests I get 'X is not a valid choice' errors. I'm guessing it's the hidden input returning a STRING and the model expecting an INT.
I have a model that has....
class Banner(models.Model):
banner_x = models.PositiveIntegerField(
blank= False, default=0, choices=enumerate(BANNER_XS))
And a form that has....
class BannerForm(forms.ModelForm):
class Meta:
model = Banner
fields = ['banner_x']
def __init__(self, *args, **kwargs):
kwargs['prefix'] = 'banner'
super(BannerForm, self).__init__(*args, **kwargs)
self.fields['banner_x'].widget = forms.HiddenInput()
In my unit tests I always get the error:
resp = self.client.post('/banner/, {
'banner-banner_x':0,
}, follow=True)
<ul class="errorlist"><li>banner_
x<ul class="errorlist"><li>Select a valid choice. 0 is not one of the available choices.</li></ul>
Anyone else seeing this? Works fine via browser, just unit tests are not coming back right.
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com .
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users .
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/ .CAEH8JE3HuYObgFkpmVNnz39Gt7NMj JUX9jXsr9tenGYhwgG_GA%40mail. gmail.com
For more options, visit https://groups.google.com/d/optout .
-- Etienne Robillard tkadm30@yandex.com http://www.isotopesoftware.ca/
- 602-214-7285
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAEH8JE3W7kL8g64ZAWcOEJg1kDO%2Bv9X6_%2BXHMeTSEjt8vxLsBw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment