You called this URL via POST, but the URL doesn't end in a slash and you have
APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST
data. Change your form to point to 127.0.0.1:8000/login/ (note the trailing slash),
or set APPEND_SLASH=False in your Django settings.
这个错误信息是与Django框架的URL处理和APPEND_SLASH设置有关的。它指出你通过POST请求访问了一个URL,但该URL没有以斜杠结尾,并且在Django设置中启用了APPEND_SLASH选项。由于POST请求不能被简单地重定向到带有斜杠的URL同时保留POST数据,所以出现了这个错误。
让我们更详细地分析这个错误的原因:
-
POST请求:HTTP请求可以使用不同的方法,最常见的是GET和POST。GET通常用于获取资源,而POST用于向服务器提交数据。POST请求通常用于表单提交,登录,或其他需要向服务器发送数据的操作。
-
URL斜杠结尾:在Django中,URL可以有或没有结尾斜杠,例如,/login/
和 /login
都可以表示相同的URL。但是,根据Django的默认设置,它会尝试将所有URL都重定向到带有斜杠的版本,以保持一致性。
-
APPEND_SLASH设置:Django的APPEND_SLASH
设置是一个布尔值,用于控制是否在URL结尾添加斜杠。当它被设置为True(这是默认设置)时,Django会自动为不以斜杠结尾的URL添加斜杠并重定向请求到新的URL。
现在,让我们明确问题的原因:
- 你使用了一个POST请求,例如表单提交,但URL没有以斜杠结尾,例如
http://127.0.0.1:8000/login
。 - 因为
APPEND_SLASH
设置为True,Django尝试将请求重定向到带斜杠的URL版本,即 http://127.0.0.1:8000/login/
。 - 但是,由于POST请求不能简单地重定向,所以Django发出了这个错误消息,提醒你要么在表单的action属性中使用带斜杠的URL,例如
http://127.0.0.1:8000/login/
,要么将APPEND_SLASH
设置为False,以禁用这种自动添加斜杠的行为。
-
在表单中使用带斜杠的URL:将表单的action属性设置为带斜杠的URL,如 http://127.0.0.1:8000/login/
,以匹配Django的重定向行为。
-
禁用APPEND_SLASH:在Django的设置文件中将APPEND_SLASH
设置为False,以禁用自动添加斜杠的功能。这适用于那些不希望URL重定向的情况。在这种情况下,Django将接受不带斜杠的URL。例如:
APPEND_SLASH = False
选择哪种方法取决于你的项目需求和偏好。
人生小悟:
=================>
其实,男女关系没有什么合适不合适,只是看对眼与看不上。有时候,不要去过度降低自己的姿态,也不要高估自我,或者去慌乱的开始一份不大适当的感情,有时候正缘来得往往迟一些,就不要去触碰那些烂桃花。自己去沉淀,去提升,去着手眼下,这才是一个正确的状态。
......
APPEND_SLASH这个常量默认为True,就是假如你没有添加斜线,他会帮你添加上(总体是这样,具体得看源码怎么写的了)
执行命名行代码启动django项目
python manage.py runserver
目前APPEND_SLASH=True,我们打开浏览器的开发者工具,查看网络请求,输
错误:RuntimeError: You
cal
led this
URL via
POST, but the
URL doesn’t
end in a
slash and you
have APP
END_
SLASH set.
提示form的action地址最后不是/结尾的,而且APP
END_
SLASH的值是Ture
解决方法:
将
url地址末尾加上/
修改settings:APP
END_
SLASH=False
解决You called this URL via POST, but the URL doesn‘t end in a slash and you have APPEND_SLASH
RuntimeError: You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST data. Change your form to point to 127.0.0.1:8000/apple/ (note the trailing slash), or set APPEND_SLASH=False in your Django settings.
做django项目时,碰到这样的错误:RuntimeError: You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't re
direct to the slash URL while maintaining POST data. Change your form to point to 127.0.0.1:8000/carts/user/car
RuntimeError: You called this URL via POST, but the URL doesn't end in a slash and you have APP
END_SLASH set. Django can't redirect to the slash URL while maintaining POST data. Change your
form to p...
ajax 用
post时,
报错:
You
cal
led this
URL via
POST, but the
URL doesn't
end in a
slash and you
have APP
END_
SLASH set.
Django can't redirect to the
slash URL while maintaining
POST data.
原因:...
× python setup.py egg_info did not run successfully.
│ exit code: 1
╰─> [15 lines of output]
The 'sklearn' PyPI package is deprecated, use 'scikit-learn'
rather than 'sklearn' for pip commands.
TongHttpServer安装部署
IT小辉同学:
TongHttpServer安装部署
一位不愿透露昵称的网民: