提交表单报错
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 localhost:8000/summer/regist/ (note the trailing slash), or set APPEND_SLASH=False in your Django settings.
解决方法:
将from的action地址改为/结尾的就可以了
或者
修改settings:APPEND_SLASH=False

354

被折叠的 条评论
为什么被折叠?



