为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我的显示URL不匹配啊

Page not found (404)

Request Method:GET
Request URL:http://127.0.0.1:8000/index/

Using the URLconf defined in myblog.urls, Django tried these URL patterns, in this order:

  1. ^blog/

The current URL, index/, 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.


正在回答

3 回答

path方法不识别正则的,如果你的路径里相用正则,就用url这个方法

0 回复 有任何疑惑可以回复我~
from django.urls import path
from django.conf.urls import url
from . import views

urlpatterns = [
    path('index/', views.index),
    # 以下注释的两句,效果是一样的,即限制路径为空
    # 注意两句引用的包不一样,url可以识别正则
    # url(r'^$', views.index),
    # path('', views.index)
]


1 回复 有任何疑惑可以回复我~

'^blog/$'     /后面少了个$  这个是正则表达式的用法 如果少了$    '^$'  代表空行 意思http://127.0.0.1:8000/index/ 后面不管接什么参数,都可以访问到index.html 文件  '^blog/$'  代表精确文根,类似nginx的location   的作业 http://127.0.0.1:8000/index/blog  必须这样结尾才可以访问得到

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
django入门与实践
  • 参与学习       65159    人
  • 解答问题       869    个

手把手带你进入Django开发的大门,充分领略Django的魅力

进入课程

为什么我的显示URL不匹配啊

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信