简体   繁体   中英

Django Forms not rendering ModelChoiceField's query set

I have the following ModelForm:

class AttendanceForm(forms.ModelForm):
    def __init__(self, *args, **kwargs):
        operation_id = kwargs['operation_id']
        del kwargs['operation_id']
        super(AttendanceForm, self).__init__(*args, **kwargs)
        self.fields['deployment'].query_set = \
            Deployment.objects.filter(operation__id=operation_id)

    class Meta:
        model = Attendance

When I manually create the form in the shell (using manage.py shell)

form = AttendanceForm(operation_id=1)
form.fields['deployment'].query_set

it returns the correct query_set, but when I call

form.as_p()

i get extra entries that weren't in the query_set? Does django cache the html output somehow? I looked through the source, but couldn't find any caching. What am I doing wrong?

The parameter is queryset , not query_set . See the documentation .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM