我是Django框架的新手,似乎无法确定我的detail.html无法正确呈现的原因。似乎我的forloop迭代了问题中的选择.choice_set.all没有被击中。如果有人可以帮助确定为什么它会非常有用。
detail.html
<h1>{{ question.question_text }}</h1>
{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
<form action="{% url 'polls:vote' question.id %}" method="post">
{% csrf_token %}
{% for choice in question.choice_set.all %}
<label for="choice{{ forloop.counter }}">{{ choice.choice_text }}
</label><br />
<input type="radio" name="choice" id="choice{{ forloop.counter }}"
value="{{ choice.id }}" />
{% endfor %}
<input type="submit" value="Vote" />
</form>
Views.py
from django.http import HttpResponseRedirect, HttpResponse
from django.template import loader
from django.urls import reverse
from django.shortcuts import get_object_or_404, render
from .models import Choice, Question
# Long Method of return HttpResponse
# def index(request):
# latest_question_list = Question.objects.order_by('-pub_date')[:5]
# template = loader.get_template('polls/index.html')
# context = {
# 'latest_question_list': latest_question_list,
# }
def index(request):
latest_question_list = Question.objects.order_by('pub_date')[:5]
context = {'latest_question_list': latest_question_list}
return render(request, 'polls/index.html', context)
# render takes the request (object,template,dictionary<optional>)
# def detail(request, question_id):
# try:
# question = Question.objects.get(pk=question_id)
# except Question.DoesNotExist:
# raise Http404("Question does not exist")
# return render(request, 'polls/detail.html', {'question': question})
# SHORTCUT TO USE GET AND RASIE 404
def detail(request, question_id):
question = get_object_or_404(Question, pk=question_id)
return render(request, 'polls/detail.html', {'question': question})
def results(request, question_id):
question = get_object_or_404(Question, pk=question_id)
return render(request, 'polls/results.html', {'question': question})
def vote(request, question_id):
question = get_object_or_404(Question, pk=question_id)
try:
selected_choice = question.choice_set.get(pk=request.POST['choice'])
except (KeyError, Choice.DoesNotExist):
# Redisplay the question voting form.
return render(request, 'polls/detail.html', {
'question': question,
'error_message': "You didn't select a choice.",
})
else:
selected_choice.votes += 1
selected_choice.save()
# Always return an HttpResponseRedirect after successfully dealing
# with POST data. This prevents data from being posted twice if a
# user hits the Back button.
return HttpResponseRedirect(reverse('polls:results', args=(question.id,)))
urls.py
# map views to url
from django.conf.urls import url
from django.conf.urls import include
from . import views
app_name = 'polls'
urlpatterns = [
#ex: polls/
url(r'^$', views.index, name='index'),
#ex: /polls/5/
url(r'^(?P<question_id>[0-9]+)/$', views.detail, name='detail'),
#ex: /polls/5//results/
url(r'^(?P<question_id>[0-9]+)/results/$', views.results, name='results'),
#ex: /polls/5/vote
url(r'^(?P<question_id>[0-9]+)/vote/$', views.vote, name='vote'),
]
**这是我的数据模型** model.py
# Pythons Imports for built in modules
import datetime
from django.db import models
from django.utils import timezone
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
#string method for question object representation
def __str__(self):
return self.question_text
def was_published_recently(self):
return self.pub_date >= timezone.now() - datetime.timedelta(days=1)
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def __str__(self):
return self.choice_text
# Running python manage.py makemigrations polls instructs django of
# changes to your model
答案 0 :(得分:0)
choice_set.all
relatedclasslowercasename_set.all
参考:
https://www.reddit.com/r/django/comments/22poxo/basic_django_tutorial_question_about_pchoice/
答案 1 :(得分:0)
在“polls / admin.py”中注册“选择”
from django.contrib import admin
from .models import Question
from .models import Choice
admin.site.register(Question)
admin.site.register(Choice)
之后在您的管理面板中添加一些选项,您就可以了。
答案 2 :(得分:0)
在这里我们创建了两个模型,即“问题”和“选择”。
在完成本教程之后,我们使用了管理员权限在问题模型中添加了数据。 但是我们没有在“ Choice”表中添加任何内容,这就是“ question.choice_set.all” 不返回任何内容(空)的原因,因此,“ {%用于选择问题。choice_set .all%}”
我刚刚在details.html中添加了一行代码用于演示。html
<column definition name> or <table constraint>expected,got 'current_date'
此处我们可以看到QuerySet为空。
在执行代码后,我已经在“选择”表中手动输入了数据,然后在期望的输出中得到了单选按钮和标签,这表明循环正在工作。
在“选择”表中输入数据时,请记住,question_id是“选择”表中的外键。因此,它的值应与问题表中id的任何一个值匹配。
可能还有其他更好的解决方案,但这就是我所发现的。我也是尝试学习django的新手。
快乐编码!
答案 3 :(得分:-1)
作为一种解决方法,您可以向question
模型添加一个功能,该功能可以获取所有相关信息并生成字典。传递字典,您可以通过模板访问信息。
这是我项目中的一个小例子
学生班下的models.py
def get_homework(self):
'''get all homeworks of classes related to this student'''
dict = {}
dict['notification'] = False
dict['content'] = {}
for my_class in self.related_class.all():
homework_list = []
for class_homework in my_class.related_homework.filter(due_date__gte=date.today()):
if class_homework.due_date == date.today():
dict['notification'] = True
homework = {}
homework['name_chinese'] = class_homework.name_chinese
homework['assigned_by'] = class_homework.assigned_by
homework['homework_content'] = class_homework.homework_content
homework['assign_date'] = class_homework.assign_date
homework['due_date'] = class_homework.due_date
homework['submission'] = class_homework.submission
homework_list.append(homework)
dict['content'][my_class.name_chinese] = homework_list
return dict
views.py
dict = student.get_homework()
return render(request,'ParentHomework.html',dict)