标签: django python-3.x attributes
我一直在我的第一个网站上工作。我有这个错误,我不明白。我已查看代码,无法查看我的错误。
所有代码均为here
感谢您的帮助。
答案 0 :(得分:0)
这是一个错字吗?
将urls.py更改为:
urls.py
urlpatterns = [ url(r'^$', ListView.as_view( queryset=Post.objects.order_by('-date')[:25], template_name="blog/blog.html")), ]
注意我在s附加了Post.object。同时删除了all()(它的还原剂)。
s
Post.object
all()