- 我有一个包含 16 个类别的 policy_category 模型。
- 我有一个响应模型来记录调查答案。该模型包括一个字段,用于记录受访者对每个政策类别的 1-5 评级。(policy_1_rank..policy_16_rank 等)
我不知道如何显示我为每个字段创建的 CHOICES:
表格模板
<div><b>How important are each of the following issues or policy areas to you, when you're selecting a candidate for president?</b></div>
<div><br></div>
<ul><div>{{ policy_category.object(pk=1) }}</div></ul>
# show POLICY_1_CHOICES below:
<div>{{ form.policy_1_rank }}</div>
<div><br></div>
<ul><div>{{ policy_category.object(pk=2) }}</div></ul>
# show POLICY_2_CHOICES below:
<div>{{ form.policy_2_rank }}</div>
...
响应模型:
# Temp Survey Response
class Temporaryresponse(models.Model):
# Healthcare
POLICY_1_CHOICES = [
(1, '1: Extremely supportive of a healthcare system with ONLY private insurance'),
(2, '2: Somewhat supportive of a healthcare system with ONLY private insurance'),
(3, '3: Somewhat supportive of a healthcare system with BOTH private insurance and a public insurance option'),
(4, '4: Extremely supportive of a healthcare system with BOTH private insurance and a public insurance option'),
(5, '5: Somewhat supportive of a healthcare system with ONLY public insurance (commonly referred to as "universal healthcare")'),
(6, '6: Extremely supportive of a healthcare system with ONLY public insurance (commonly referred to as "universal healthcare")'),
]
...
# Healthcare
policy_1_rank = models.IntegerField(blank=True, default=0, choices=POLICY_1_CHOICES)
表格.py
class NextresponseForm(ModelForm):
policy_1_rank = forms.IntegerField()
policy_2_rank = forms.IntegerField()
...
class Meta:
model = Temporaryresponse
fields = ['policy_1_rank', 'policy_2_rank',...]
编辑:也许下面的答案不起作用,因为我的观点有问题。我正在尝试从第一个表单页面“tr.html”导航,保存数据,并将响应的 pk 发送到“nr.html”以进行第二部分调查。这是有效的。但是我对“nr.html”的看法不正确吗?
视图.py
# Create temporary response view - this saves and goes to nr perfectly. pk produced from saving the response shows in nr link in web browser (myapp/nr/pk# shows here perfectly.)
def tr(request):
if request.method == "POST":
form = TemporaryresponseForm(request.POST)
if form.is_valid():
tempresponse = form.save()
tempresponse.save()
return redirect('nr', pk=tempresponse.pk)
else:
form = TemporaryresponseForm()
return render(request, 'politicalexperimentpollapp/tr.html', {'form': form})
def nr(request, pk):
tempresponse = get_object_or_404(Temporaryresponse, pk=pk)
instance = Temporaryresponse.objects.get(pk=pk)
if request.method == "POST":
form = NextresponseForm(request.POST, instance=instance)
if form.is_valid():
nextresponse = form.save()
nextresponse.save()
return redirect('fr', pk=nextresponse.pk)
else:
form = NextresponseForm(instance=instance)
return render(request, 'politicalexperimentpollapp/nr.html', {'tempresponse': tempresponse}, {'form': form})