95
我在這個表單字段:創建Django的表單字段默認爲空查詢集
city = forms.ModelChoiceField(label="city", queryset=MyCity.objects.all())
district = forms.ModelChoiceField(label="district", queryset=MyDistrict.objects.all())
area = forms.ModelChoiceField(label="area", queryset=MyArea.objects.all())
區來源於點擊城市和地區來自點擊區域。用queryset=MyDistrict.objects.all()
和queryset=MyArea.objects.all()
的形式會很重。我如何使查詢集默認爲空?提前
在這種基於URL參數在你看來你的查詢集更改使用情況。然後在您的視圖中設置正確的查詢集,如下所示: edit_form.fields [「asset」]。queryset = Asset.objects.filter(location_id = location_id) – radtek