我是 Django 的新手,现在我正在尝试使用它制作一个简单的网上商店。今天发现自己需要一些调试工具,所以选择了django-debug-toolbar
. 我按照此处的说明进行设置-如何查看 Django 调试工具栏?. 但是当我设置DEBUG
时True
我收到一条消息 -
Page not found (404)
Request Method: GET
Request URL: http://127.0.0.1:8000/
Using the URLconf defined in urlconf, Django tried these URL patterns, in this order:
^__debug__/m/(.*)$
^__debug__/sql_select/$ [name='sql_select']
^__debug__/sql_explain/$ [name='sql_explain']
^__debug__/sql_profile/$ [name='sql_profile']
^__debug__/template_source/$ [name='template_source']
The current URL, , didn't match any of these.
You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.
这是我的应用程序的 urls.py:
from django.conf.urls import patterns, url
urlpatterns = patterns('ecommerce.views',
url(r'^profile/$', 'profile'),
url(r'^login/$', 'login_user'),
url(r'^logout/$', 'logout_user'),
url(r'^registration/$', 'registration'),
)
据我现在所见,django 不是在我的应用程序的 urls.py 中,而是在其他地方寻找合适的 url。