我的gae / python出现管道错误,我找不到任何解决方案似乎都适用于我的情况。 (例如,下面的问题类似,但它取决于使用提交vs按钮,这不是我的问题)。
Google App Engine & jQuery Ajax causes a Broken Pipe error
这是我的javascript:
var testVar = [1,2]
function testFun() {
jQuery.post("http://localhost:8084",testVar.toString(), function()
{
console.log( "post ok" );
}
)
document.write(testVar)
}
这是HTML:
<!doctype html>
<html>
<head>
<title>Experiment</title>
<meta charset="utf-8" />
<style type="text/css"> </style>
<script type="text/javascript" src="lib/jquery/jquery-1.4.2.js"></script>
<script src="js/posttestjs.js"></script>
</head>
<body>
<input id = "start_button" type="button" onclick= "testFun()" value="begin">
</body>
</html>
这是我的python:
from google.appengine.ext import db
import webapp2
import logging
class data(webapp2.RequestHandler):
def post(self):
logging.info('CHECK1')
self.response.out.write("""<html><body> CHECK2 </body></html>""")
app = webapp2.WSGIApplication([('/', data)] , debug = True)
我得到的错误是:
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 284, in _handle_request_noblock
self.process_request(request, client_address)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 310, in process_request
self.finish_request(request, client_address)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 323, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine- default.bundle/Contents/Resources/google_appengine/google/appengine/tools/dev_appserver.py", line 2630, in __init__
BaseHTTPServer.BaseHTTPRequestHandler.__init__(self, *args, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 640, in __init__
self.finish()
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/SocketServer.py", line 693, in finish
self.wfile.flush()
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 303, in flush
self._sock.sendall(view[write_offset:write_offset+buffer_size])
error: [Errno 32] Broken pipe
最后,这是我的.yaml文件:
application: posttestjs
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /static
static_dir: static
- url: /.*
script: posttestjs.app
我在日志中看到CHECK1,所以我认为收到的帖子没问题,但是响应不起作用。
如果它是相关的:我正在使用firefox和python 2.7.3。谢谢!
答案 0 :(得分:1)
奇怪的是,一旦我开始将发布的数据放入GAE数据存储区,问题就消失了。我没有看到为什么这应该解决问题的任何理由,但它似乎已经这样做了。
答案 1 :(得分:0)
查看我的一个工作示例(一个适用于dev_appserver的示例),我注意到两件事。这是我做的(略微简化):
jQuery.post("/", {'key': 47}, function(response) {
...
});
首先,我没有传递显式端口。在您的情况下,除非您使用--port 8084
运行dev_appserver,否则您将无法连接。
其次,我正在通过一个字典,你要传递一个清单。 http://api.jquery.com/jQuery.post/并未说传递列表有效。
答案 2 :(得分:-1)
据我所知,这是一个评论:
self.response.out.write("""<html><body> CHECK2 </body></html>""")
那些应该是单引号。