如果render使用的html文件不加路径的话,有可能会render到C盘Python安装目录的template里,然后找不到index.html进而报错,所以可以尝试加上index.html的文件路径
2017-04-03
进index 就报错
<a href="{% url 'blog:article_page' article.id %}">{{ a.title }} </a>
Reverse for 'article_page' with arguments '('',)' and keyword arguments '{}' not found. 1 pattern(s) tried: [u'blog/article/(?P<article_id>[0-9]+)$'
<a href="{% url 'blog:article_page' article.id %}">{{ a.title }} </a>
Reverse for 'article_page' with arguments '('',)' and keyword arguments '{}' not found. 1 pattern(s) tried: [u'blog/article/(?P<article_id>[0-9]+)$'
2017-04-03
最新回答 / wasdf
这是因为你的数据库里已经有了一些数据,现在的操作是新添加一列,那么所有的数据后面都会再多一条数据,默认添加新的列的数据不允许为null,而在脚本里pub_time没有设置默认值,“we can't do that”,继续输入选择1 ,马上设置默认值,2,退出重新编写脚本设置默认值/或者在后面添加一个'null=True'(允许为null)
2017-03-30