Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8091/delete2/666 Using the URLconf defined in AndroidPredict.urls, Django tried these URL patterns, in this order: admin/ uploader login/ applogin appreg register/ login_out table user_info [name='user_info'] delete/<str:id_> delete/<str:user_> [name='delete_user'] getUser/ appout ^media/(?P<path>.*)$ The current path, delete2/666, 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.
时间: 2024-01-08 12:04:54 浏览: 107
FTP-document.rar_fit//127.0.0.1:5050_ftb 127.0.0.1 2121_ftb:127.
这是一个404错误页面,意味着你访问的URL不存在。你需要检查你的代码,看看是否有一个名为delete2/666的URL模式被定义。如果没有,请确保你的URL模式匹配你的视图函数。如果你已经定义了delete2/666的URL模式,请确保它的位置在其他URL模式的前面,因为Django会按照URL模式的顺序进行匹配。最后,你也可以通过将DEBUG设置为False来禁用详细的错误信息。
阅读全文