很多同学objects方法调用不出来,应该是abstract 把article = models.Article.objects.get(pk =1) 换成 article = models.Article.abstract.get(pk =1)
2018-03-03
首先 如果版本和老师的一模一样的 ,就没事。我的是1.8.11 ,方法是修改setting.py
注意里面所有template 单词里面是否有s ,
TEMPLATES = [
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
。。。。。
'django.template.context_processors.debug',
'django.template.context_processors.request',
注意里面所有template 单词里面是否有s ,
TEMPLATES = [
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
。。。。。
'django.template.context_processors.debug',
'django.template.context_processors.request',
2018-02-26
对于提交文章后返回首页,老师用的不是一个好方法,参考Django官方文档,应该使用重定向返回首页
from django.http import HttpResponseRedirect
from django.urls import reverse
return HttpResponseRedirect(reverse('index'))
from django.http import HttpResponseRedirect
from django.urls import reverse
return HttpResponseRedirect(reverse('index'))
2018-02-26