Django错误: ConnectionResetError: [Errno 54] Connection reset by peer
Posted shenzs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django错误: ConnectionResetError: [Errno 54] Connection reset by peer相关的知识,希望对你有一定的参考价值。
原因:
html里面的form和ajax各自提交了一遍POST请求,导致上面错误;
或者html里面的a和ajax各自提交了一遍POST请求,导致上面错误;
解决:
一.
//谷歌及IE8以上 e.preventDefault();
//IE8及以下 window.event.returnValue = false;
二.
a标签的取消默认行为可以在href=‘javascript:void(0);’
以上是关于Django错误: ConnectionResetError: [Errno 54] Connection reset by peer的主要内容,如果未能解决你的问题,请参考以下文章