首页 > 代码库 > url.py中的配置问题
url.py中的配置问题
urlpatterns = [
url(r‘^add$‘, calc_views.add, name=‘add‘),
url(r‘^admin/‘, admin.site.urls),
]
当初就是这么写的 。 然后访问xxx/
是这么提示的:
Page not found (404)
Request Method: | GET |
---|---|
Request URL: | http://127.0.0.1:8000/ |
Using the URLconf defined in add.urls
, Django tried these URL patterns, in this order:
- ^a$ [name=‘q‘]
- ^admin/
The empty path 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.
……
不多说了。
改回来
url(r‘^$‘, calc_views.add, name=‘q‘),#根目录
url(r‘^a$‘, calc_views.add, name=‘q‘), xx/a
url.py中的配置问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。