gpt4 book ai didi

python - 如何使用 Django 表单创建过滤下拉列表?

转载 作者:行者123 更新时间:2023-11-28 18:46:17 25 4
gpt4 key购买 nike

我有这个模型:

class QuestionInstance(models.Model):
questionsSet = models.ForeignKey(QuestionsSet)
question = models.ForeignKey(Question)
parent = models.ForeignKey('self',null=True,blank=True)
optional = models.BooleanField(default=False)

我想创建一个下拉列表,用户可以选择一个 QuestionInstance。必须使用 questionsSet 对其进行过滤。

我已经使用这样的模型进行了测试,但它不起作用:

(基于此How do I filter values in a Django form using ModelForm?)

class FormQuestionSelect(ModelForm):
instanceList = forms.ChoiceField(choices=[(questionInstance.id, questionInstance.question) for questionInstance in QuestionInstance.objects.all()])

class Meta:
model = QuestionInstance
fields = ('instanceList', )
widgets = {
'instanceList': Select(attrs={'class': 'select'}),
}

def __init__(self, questionsSet=None, **kwargs):
super(FormQuestionSelect, self).__init__(**kwargs)
if questionsSet:
#Tested many code here to filter, None of them worked :(
#Is that possible to create instanceList there ?

对于这种目的,我不确定使用模型形式是否是个好主意。

在创建或更新模型实例时,模型形式非常有用。当使用特定的表单时,就像在这种情况下,我在模板中使用自定义表单:

查看

questionInstanceList = QuestionInstance.objects.filter(questionsSet=questionsSet)

模板

<select name="questionInstanceSelect">
{% for instance in questionInstanceList %}
<option value="{{ instance.id }}">{{ instance.question.text }}</option>
{% endfor %}
</select>

并以这种方式处理它们:

instanceList = request.POST.get('questionInstanceSelect')

我很确定有一个正确的方法。

最佳答案

您可以在表单实例化后在表单 __init__ 或 View 中更改 ModelChoiceField 的查询集。但这不能解决客户端的问题。当有人更改 QuestionSet Question 选择框将保持不变

要更新查询集只需更新表单字段的一个

form.fields['parent'].queryset = (QuestionInstance.objects
.filter(questionsSet=questionsSet))

或者如果您更改表单 __init__

self.fields['parent'].queryset = (QuestionInstance.objects
.filter(questionsSet=questionsSet))

但是应该记住,如果 questionsSet 在客户端发生更改,父列表将保持不变。

你会考虑添加客户端代码来更新 parent 的选择列表吗

让我解释一下。

你有模型

class QuestionInstance(models.Model):
questionsSet = models.ForeignKey(QuestionsSet)
question = models.ForeignKey(Question)
parent = models.ForeignKey('self',null=True,blank=True)
optional = models.BooleanField(default=False)

此处的父字段链接到self(同一模型)。

让我们使用`这个模型的模型形式

class FormQuestionSelect(ModelForm):
class Meta:
model = QuestionInstance

ModelForm 将为每个模型字段创建具有相同名称的字段然后在它创建之后我们更新 ModelChoiceField(为 ForeignKey 创建)queryset

关于python - 如何使用 Django 表单创建过滤下拉列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19586359/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com