我用Django构建了一个简单的博客应用程序,我遇到了NoReverseMatch的一些问题。
以下是我的问题截图:
这是我在Github上的代码:https://github.com/nafiulhasanbd/Django_blog_app
如何解决错误?
答案 0 :(得分:0)
在views.py第77行更改
return redirect('post_detail', pk=post.pk)
到
return redirect(PostDetailView, pk=post.pk)