为了账号安全,请及时绑定邮箱和手机立即绑定

列表加载不出来,python3

from django.shortcuts import render
from django.http import HttpResponse

from . import models


def index(request):
   articles = models.Article.objects.all()
   return render(request, 'blog/index.html',{'articles':articles})


<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>Title</title>
</head>
<body>
<h1>
   <a href="">新文章</a>
</h1>
{% for aritcle in articles %}
   <a href="">{{ articles.title }}</a>
   <br/>
{% endfor %}
</body>
</html>

正在回答

4 回答

一楼正解

0 回复 有任何疑惑可以回复我~

同样的问题,解决了吗/

0 回复 有任何疑惑可以回复我~
django.shortcuts render
django.http HttpResponse
. models
(request):
    article=models.Article.objects.all()
    render(request{:article})

如果我

models.Article.objects.get(pk=1)页面就能加载   它不报错 就是啥也显示不出来 空白的
0 回复 有任何疑惑可以回复我~

articles.title 改成 article.title

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
django入门与实践
  • 参与学习       65159    人
  • 解答问题       869    个

手把手带你进入Django开发的大门,充分领略Django的魅力

进入课程

列表加载不出来,python3

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信