使用Django 3将变量从数据库传递到我的网站时遇到麻烦

时间:2020-09-25 12:36:28

标签: python-3.x django-models django-views django-generic-views django-3.1

我仍然是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 %}

感谢您对高级人员的帮助。

2 个答案:

答案 0 :(得分:0)

在您的视图中,编写一个非常细的线条结构。

 class Home_pageView(generic.ListView):
    template_name = 'Notices/home_page.html'
    model=Notice

类似的问题列表视图案例,

在您的HTML模板中,

 {% for something in object_list %}
 {{something.notice_text}}

答案 1 :(得分:0)

使用引用for item in ... 循环,然后引用item而不是notice-这说明了您的空要点。

将模板重写为:

<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>

请注意,如果您使用if标签,则不需要empty ...