最赞回答 / 褶莲
<...图片...>看了后面的兄dei的评论学会的方法,在urls里面记得index也加上name参数
path('index/', views.index, name='index'),
urlpatterns = [ path('index/', views.index, name='index'), path('ar...
2018-04-11
django.shortcuts render
django.http HttpResponse
. models
(request):
article=models.Article.objects.all()
render(request{:article})
如果我
models.Article.objects.get(pk=1)页面就能加载 它不报错 就是啥也显示不出来 空白的
django.http HttpResponse
. models
(request):
article=models.Article.objects.all()
render(request{:article})
如果我
models.Article.objects.get(pk=1)页面就能加载 它不报错 就是啥也显示不出来 空白的
2018-04-10
已采纳回答 / whf能不能多读点书
汗 我以为发的就是我复制pycharm的语句呢 但是都乱行了 我给你发图片<...图片...>这是project/url:<...图片...>这是app/url:<...图片...>django2对路径使用了新的path模块 要注意的其实就是不再是...
2018-04-09
path('blog/', include(('blog.urls', 'blog'), namespace=None)),
re_path(r'^article/(?P<article_id>[0-9]+)$', views.article_page,name='article_page')
<a href="{% url 'blog:article_page' article.id %}">{{ article.title }}</a>
re_path(r'^article/(?P<article_id>[0-9]+)$', views.article_page,name='article_page')
<a href="{% url 'blog:article_page' article.id %}">{{ article.title }}</a>
2018-04-08
我改三处才可以: path('blog/', include(('blog.urls', 'blog'), namespace=None)), re_path(r'^article/(?P
[0-9]+)$', views.article_page,name='article_page') {{ article.title }}
[0-9]+)$', views.article_page,name='article_page') {{ article.title }}
2018-04-08