当前位置:   article > 正文

error: [Error 32] Broken pipe——造成此错误的一种可能原因及解决方法_error: broken pipe

error: broken pipe

目标:异步调用——前端用jQuery Ajex中的get()方法请求服务器上的json数据,并显示在页面上。

错误显示如下:

10.10.10.252 - - [15/Aug/2018 19:59:09] "GET /cadastreSearch?level=15 HTTP/1.1" 200 -
----------------------------------------
Exception happened during processing of request from ('10.10.10.252', 35198)
Traceback (most recent call last):
  File "/usr/lib64/python2.7/SocketServer.py", line 593, in process_request_thread
    self.finish_request(request, client_address)
  File "/usr/lib64/python2.7/SocketServer.py", line 334, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/usr/lib64/python2.7/SocketServer.py", line 651, in __init__
    self.finish()
  File "/usr/lib64/python2.7/SocketServer.py", line 710, in finish
    self.wfile.close()
  File "/usr/lib64/python2.7/socket.py", line 279, in close
    self.flush()
  File "/usr/lib64/python2.7/socket.py", line 303, in flush
    self._sock.sendall(view[write_offset:write_offset+buffer_size])
error: [Errno 32] Broken pipe

错误描述:定义了标签<a>Process 1</a>的click事件,页面加载完成后点击"Process 1"来调用$.get()函数,页面会被刷新,且没有数据被显示。通过调试,发现$.get(url, data,function,datatype)执行成功,且服务器会返回Response Header,其中显示“200 OK”。但是再往下执行页面就会刷新,所有资源被重新加载,后台服务器报错(如上所示)。

出错的原因:使用了标签<a> 来绑定“click”事件,至于为什么点击<a>会导致页面的刷新具体原因还未清楚。

解决方法:改用标签<button>或其他不会刷新页面的标签。

参考资料:https://blog.csdn.net/zsdt345a780rfajwet/article/details/72828816

                  https://bbs.csdn.net/topics/390786750

第一篇文章中的方法我其实已经加在python代码中了,并没有起作用。因为同样是Broken Pipe错误(客户端在服务器返回前,就已经断开连接,服务器端写response才报错),我的是因为页面刷新,导致之前的连接断开,她的原因就是单纯Ajex跨域吧。

第二个链接才是真正启发我找到错误原因和解决方法的。

最后,附上代码:

  1. <script>
  2. $(function(){
  3. init();
  4. });
  5. $(function () {
  6. $("button[name='process1']").click(function () {
  7. alert("click on the process1 entry!")
  8. $.get(url + '/cadastreSearch', {
  9. level: map.getZoom()
  10. }, function (data) {
  11. redline = L.geoJSON(data[0], {
  12. color: 'red',
  13. onEachFeature: onEachFeature
  14. });
  15. map.addLayer(redline);
  16. freehold = L.geoJSON(data[1], {
  17. color: 'blue',
  18. onEachFeature: onEachFeature
  19. });
  20. map.addLayer(freehold);
  21. usedlandrl = L.geoJSON(data[2], {
  22. color: 'green',
  23. onEachFeature: onEachFeature
  24. });
  25. map.addLayer(usedlandrl);
  26. console.log(data[2]);
  27. }, "json");
  28. })
  29. })
  30. $(function(){
  31. layershow();
  32. });
  33. </script>

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/160140?site
推荐阅读
相关标签
  

闽ICP备14008679号