最新回答 / qq_小太阳_112
你的意思是,可以回到index 但再在index里面操作进入article页面就不行是吗如果是这样的话,应该就是index里面有问题了
<a href="{%url 'blog1:article_page' article.id %}">{{ article.title }}</a>
2018-07-06
使用python3.6 Django2.0的同学请注意:POST提交数据的action请求请这样写:
title = request.POST['title']
content = request.POST['content']
否则会报错,无法通过
title = request.POST['title']
content = request.POST['content']
否则会报错,无法通过
2018-07-02
最赞回答 / Easton_Lin
添加或者修改的都应该重定向到要跳转的页面,而不是简单的返回,重定向如下:
from django.http import HttpResponseRedirect from django.urls import reverse
return HttpResponseRedirect(reverse('blog:index')...
2018-07-01