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

为什么无法显示文章列表

views.py


from . import  models

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


index.html


{% for article in artcles %}
    <a href="">{{ articles.title }}</a>
    <br>
{% endfor %}


python版本是3.6.5  

Django是 1.10.2



正在回答

2 回答

articles.title 换成 article.title

没有s

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

 return render(request, 'blog/index.html', {'articles': articles})

加一下应用地址

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

举报

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

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

进入课程

为什么无法显示文章列表

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