使用 Django 3 将变量从我的数据库传递到我的网站时遇到问题
Having trouble passing variables from my database to my website using Django 3
我还是 django 的新手,最近开始了一个有很多模型的项目。问题是每当我想将一个变量从我的数据库传递到我的网站模板时,当我 运行 我没有看到我的变量的网站时,它们只是显示为空。例如,如果我在某个模型下有 10 个对象变量,当我使用 for 循环遍历有序列表 (html) 中的对象时,我在呈现的页面上看到的都是空的项目符号点。我迷路了需要帮助!!!
示例通知模型
from django.db import models
from django.utils import timezone
import datetime
class Notice(models.Model):
headline=models.CharField(max_length=150)
notice_text=models.TextField()
publication_date=models.DateTimeField('date published')
def __str__(self):
return self.headline
景色
class Home_pageView(generic.ListView):
template_name = 'Notices/home_page.html'
context_object_name = 'notice_objects'
def get_queryset(self):
return Notice.objects.all()
模板
{% if notice_objects %}
<ul>
{% for item in notice_objects %}
<li><a href="{% url 'notices:detail' notice.id %}">{{ notice.notice_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No notices are available.</p>
{% endif %}
正如我已经提到的,当我 运行 上面的代码时,我得到的都是空的项目符号点,对应于我在数据库中的通知对象的数量。
我的项目中还有另一个名为问题的模型,如果我使用相同的代码,变量会正确呈现,但我似乎没有注意到两个模型之间的任何差异,但也许你们可以发现任何不规则的差异。否则,除了问题模型之外,我的所有其他模型都会在我的网站上呈现空的要点。我什至认为我的数据库有问题所以我从 postgresql 更改为 mariadb 再到 sqlite 但没有任何改变。
问题模型
from django.db import models
from django.utils import timezone
import datetime
class Question(models.Model):
headline=models.CharField(max_length=150,default=None,null=True)
question_text=models.CharField(max_length=200)
publication_date=models.DateTimeField('date published')
def __str__(self):
return self.question_text
def was_published_recently(self):
now = timezone.now()
return now-datetime.timedelta(days=1) <= self.publication_date <= now
景色
class Home_pageView(generic.ListView):
template_name = 'Polls/home_page.html'
context_object_name = 'latest_question_list'
def get_queryset(self):
return Question.objects.all()
模板
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="{% url 'polls:detail' question.id %}">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
感谢大家的提前帮助。
在你看来,写一个很细的线结构,比如。
class Home_pageView(generic.ListView):
template_name = 'Notices/home_page.html'
model=Notice
问题列表视图的类似情况,
在您的 HTML 模板中,
{% for something in object_list %}
{{something.notice_text}}
你循环使用引用 for item in ...
然后你引用 notice
而不是 item
- 这解释了你的空要点。
将您的模板重写为:
<ul>
{% for notice in notice_objects %}
<li><a href="{% url 'notices:detail' notice.id %}">{{ notice.notice_text }}</a></li>
{% empty %}
<p>No notices are available.</p>
{% endfor %}
</ul>
请注意,如果您使用 empty
标签,则不需要 if
...
我还是 django 的新手,最近开始了一个有很多模型的项目。问题是每当我想将一个变量从我的数据库传递到我的网站模板时,当我 运行 我没有看到我的变量的网站时,它们只是显示为空。例如,如果我在某个模型下有 10 个对象变量,当我使用 for 循环遍历有序列表 (html) 中的对象时,我在呈现的页面上看到的都是空的项目符号点。我迷路了需要帮助!!!
示例通知模型
from django.db import models
from django.utils import timezone
import datetime
class Notice(models.Model):
headline=models.CharField(max_length=150)
notice_text=models.TextField()
publication_date=models.DateTimeField('date published')
def __str__(self):
return self.headline
景色
class Home_pageView(generic.ListView):
template_name = 'Notices/home_page.html'
context_object_name = 'notice_objects'
def get_queryset(self):
return Notice.objects.all()
模板
{% if notice_objects %}
<ul>
{% for item in notice_objects %}
<li><a href="{% url 'notices:detail' notice.id %}">{{ notice.notice_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No notices are available.</p>
{% endif %}
正如我已经提到的,当我 运行 上面的代码时,我得到的都是空的项目符号点,对应于我在数据库中的通知对象的数量。 我的项目中还有另一个名为问题的模型,如果我使用相同的代码,变量会正确呈现,但我似乎没有注意到两个模型之间的任何差异,但也许你们可以发现任何不规则的差异。否则,除了问题模型之外,我的所有其他模型都会在我的网站上呈现空的要点。我什至认为我的数据库有问题所以我从 postgresql 更改为 mariadb 再到 sqlite 但没有任何改变。
问题模型
from django.db import models
from django.utils import timezone
import datetime
class Question(models.Model):
headline=models.CharField(max_length=150,default=None,null=True)
question_text=models.CharField(max_length=200)
publication_date=models.DateTimeField('date published')
def __str__(self):
return self.question_text
def was_published_recently(self):
now = timezone.now()
return now-datetime.timedelta(days=1) <= self.publication_date <= now
景色
class Home_pageView(generic.ListView):
template_name = 'Polls/home_page.html'
context_object_name = 'latest_question_list'
def get_queryset(self):
return Question.objects.all()
模板
{% if latest_question_list %}
<ul>
{% for question in latest_question_list %}
<li><a href="{% url 'polls:detail' question.id %}">{{ question.question_text }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No polls are available.</p>
{% endif %}
感谢大家的提前帮助。
在你看来,写一个很细的线结构,比如。
class Home_pageView(generic.ListView):
template_name = 'Notices/home_page.html'
model=Notice
问题列表视图的类似情况,
在您的 HTML 模板中,
{% for something in object_list %}
{{something.notice_text}}
你循环使用引用 for item in ...
然后你引用 notice
而不是 item
- 这解释了你的空要点。
将您的模板重写为:
<ul>
{% for notice in notice_objects %}
<li><a href="{% url 'notices:detail' notice.id %}">{{ notice.notice_text }}</a></li>
{% empty %}
<p>No notices are available.</p>
{% endfor %}
</ul>
请注意,如果您使用 empty
标签,则不需要 if
...