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 07:04:54 浏览: 116
这是一个404错误页面,意味着你访问的URL不存在。你需要检查你的代码,看看是否有一个名为delete2/666的URL模式被定义。如果没有,请确保你的URL模式匹配你的视图函数。如果你已经定义了delete2/666的URL模式,请确保它的位置在其他URL模式的前面,因为Django会按照URL模式的顺序进行匹配。最后,你也可以通过将DEBUG设置为False来禁用详细的错误信息。
相关问题
error sending request for url (http://127.0.0.1:12345/
引用\[1\]:解决vue项目报错 POST http://127.0.0.1:3000/login net::ERR_CONNECTION_RESET 通过报错可得知,发送post请求时,服务器端的接口/login拒绝连接 。 引用\[2\]:Request Method: GET Request URL: http://127.0.0.1:8000/ Using the URLconf defined in djangoProject.urls, Django tried these URL patterns, in this order: 。 引用\[3\]:粉丝群里面的一个小伙伴想用flask搭建一个接收数据的接口,但是发生了报错(当时他心里瞬间凉了一大截,跑来找我求助,然后顺利帮助他解决了,顺便记录一下希望可以帮助到更多遇到这个bug不会解决的小伙伴),报错代码如下:: import flask from flask import request import requests server = flask.Flask(__name__) # __name__代表当前的python文件。把当前的python文件当做一个服务启动 @server.route('/') # 只有在函数前加上@server.route (),这个函数才是个接口,不是一般的函数 def reg(): headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36' } url = 'https://zqz-shangbiao.obs.cn-east-3.myhuaweicloud.com/1/2032/10156217.png' r = requests.get(url, headers=headers) return r.content server.run(debug=True) 。 问题:error sending request for url (http://127.0.0.1:12345/
回答: 根据提供的引用内容,你遇到的问题是在发送请求时出现了错误。具体来说,对于vue项目报错POST http://127.0.0.1:3000/login net::ERR_CONNECTION_RESET,这个错误表明服务器端的接口/login拒绝连接。\[1\]而对于error sending request for url (http://127.0.0.1:12345/,这个错误可能是由于请求的URL无效或无法连接到该URL导致的。\[3\]为了解决这些问题,你可以检查服务器端的接口是否正确配置,并确保URL的正确性和可访问性。此外,还可以检查网络连接是否正常,以及防火墙或代理设置是否会影响请求的发送。
#### 引用[.reference_title]
- *1* [POST http://127.0.0.1:3000/login net::ERR_CONNECTION_RESE](https://blog.csdn.net/Janner668/article/details/114929736)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8000/ Using the URLconf defin](https://blog.csdn.net/weixin_45866062/article/details/124348985)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [已解决The method is not allowed for the requested URL.](https://blog.csdn.net/yuan2019035055/article/details/126728081)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
Page not found (404) Request Method: GET Request URL: http://127.0.0.1:8091/delete2/122 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_> getUser/ appout ^media/(?P<path>.*)$ The current path, delete2/122, 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.
这个错误提示意味着你的 Django 应用程序正在寻找一个名为 "delete2/122" 的 URL 路径,但是在你的 URL 配置中没有匹配到这个路径。可能是因为你的 URL 配置中没有包含这个路径,或者是路径书写有误。你可以检查一下你的 URL 配置,看看是否正确配置了该路径。同时,DEBUG = True 设置可以显示更详细的错误信息,有助于找到问题。
阅读全文