最新回答 / wanna288
<...图片...>我也出现了类似的问题,不过是这样,但是改了以后有出现Article matching query does not exist.的错误,求教
2018-03-25
最新回答 / starch
你可以检查一下SQliteEP是否连接到db.sqlite3,即时候建立了连接,如果不行的话,我建议你用navicat,这个专门用于数据库的处理的软件,留你邮箱,我发给你
2018-03-22
根目录下的urls
url(r'^blog/', include('blog.urls',namespace='blog')),
app目录下的urls
url(r'^index/$','index'),
url(r'^test/$','test',name='test'),
<a href="{% url 'blog:test' arc.id %}">aaa</a>
这种写法会报错,后来直接修改成跳转的路径 <a href="/blog/test">{{arc.title}}+{{ arc.content }}</a>
才可以。有没有大神能解释下啊
url(r'^blog/', include('blog.urls',namespace='blog')),
app目录下的urls
url(r'^index/$','index'),
url(r'^test/$','test',name='test'),
<a href="{% url 'blog:test' arc.id %}">aaa</a>
这种写法会报错,后来直接修改成跳转的路径 <a href="/blog/test">{{arc.title}}+{{ arc.content }}</a>
才可以。有没有大神能解释下啊
2018-03-20
article_id=3和4可以,1和2居然不幸。也就是说输入localhost:8000/blog/article/1是报错的,但是输入localhost:8000/blog/article/3就可以了。不知道是不是跟我数据库里面的PK id从3开始有关。然后我的正则表达式是这样的 url(r'^article/(?P<article_id>[0-9]+)/$, view.article_page
2018-03-19
<form action="{% url 'blog:edit_action' %}" method="post">
{% csrf_token %}
{% csrf_token %}
2018-03-19
python 3.6+django 2.0.3
改动两处
<a href="{% url 'blog:article_page' article.id %}">{{ article.title }}</a>
path('blog/', include(('blog.urls', 'blog'), namespace=None))
改动两处
<a href="{% url 'blog:article_page' article.id %}">{{ article.title }}</a>
path('blog/', include(('blog.urls', 'blog'), namespace=None))
2018-03-19