RuntimeError: You called this URL via POST, but the URL doesn't end in a slash and you have ....

访问时报错:

RuntimeError: You called this URL via PUT, 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 PUT data. Change your form to point to 127.0.0.1:8000/app01/user/
(note the trailing slash), or set APPEND_SLASH=False in your Django settings.

 

解决办法:给url地址末尾加上/,或者修改settings:APPEND_SLASH=False.

你可能感兴趣的:(#,Django)