程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Django Reverse for new_topic not found . new_topic is not a valid view function or pattern nam

編輯:Python

最近在學習Django,跟著做一個Django論壇從搭建到部署,教程鏈接也貼上:【第一部分-django論壇從搭建到部署】一個完整Django入門指南-蒼雲橫渡,做到第三部分時候遇到一個問題,困擾了我很久。經查閱後仍是無果,官方文檔也看了依然沒有解決問題,後來突然發現了問題,再看看報錯的情況,確實就是自己寫的時候寫錯了。先把錯誤情況貼上:

Internal Server Error: /boards/1/Traceback (most recent call last): File “D:\IDE\Python\Anaconda\lib\site-packages\django\core\handlers\exception.py”, line 34, in inner response = get_response(request) File “D:\IDE\Python\Anaconda\lib\site-packages\django\core\handlers\base.py”, line 126, in _get_response response = self.process_exception_by_middleware(e, request) File “D:\IDE\Python\Anaconda\lib\site-packages\django\core\handlers\base.py”, line 124, in _get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File “D:\IDE\pycharm\PyCharm Community Edition 2018.1.2\DjangoProjects\myproject\boards\views.py”, line 33, in board_topics return render(request, ‘topics.html’, {‘board’: board}) File “D:\IDE\Python\Anaconda\lib\site-packages\django\shortcuts.py”, line 36, in render content = loader.render_to_string(template_name, context, request, using=using) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\loader.py”, line 62, in render_to_string return template.render(context, request) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\backends\django.py”, line 61, in render return self.template.render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 171, in render return self._render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 163, in _render return self.nodelist.render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 937, in render bit = node.render_annotated(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 904, in render_annotated return self.render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\loader_tags.py”, line 150, in render return compiled_parent._render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 163, in _render return self.nodelist.render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 937, in render bit = node.render_annotated(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 904, in render_annotated return self.render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\loader_tags.py”, line 62, in render result = block.nodelist.render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 937, in render bit = node.render_annotated(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 904, in render_annotated return self.render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\loader_tags.py”, line 62, in render result = block.nodelist.render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 937, in render bit = node.render_annotated(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\base.py”, line 904, in render_annotated return self.render(context) File “D:\IDE\Python\Anaconda\lib\site-packages\django\template\defaulttags.py”, line 442, in render url = reverse(view_name, args=args, kwargs=kwargs, current_app=current_app) File “D:\IDE\Python\Anaconda\lib\site-packages\django\urls\base.py”, line 90, in reverse return iri_to_uri(resolver._reverse_with_prefix(view, prefix, *args, **kwargs)) File “D:\IDE\Python\Anaconda\lib\site-packages\django\urls\resolvers.py”, line 622, in _reverse_with_prefix raise NoReverseMatch(msg)django.urls.exceptions.NoReverseMatch: Reverse for ‘new_topic’ not found. ‘new_topic’ is not a valid view function or pattern name.[24/Nov/2018 22:54:00] “GET /boards/1/ HTTP/1.1” 500 169427

看起來有點亂,其實關鍵信息就是最後一句話:

Reverse for ‘new_topic’ not found . ‘new_topic’ is not a valid view function or pattern name.

意思就是new_topic在反析的時候沒有被找到,‘new_topic’ 不是一個有效的視圖方法或者模式名。

浏覽器報的錯也貼上:

urls.py:

view.py:

我注意到其實是urls.py文件中命名空間寫錯了:

實際上我在view.py文件中定義的方法是new_topic,HTML模板命名也是new_topic.html,所以多加了一個s導致了錯誤。以後還是需要更加細心。


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved