我在上传AjaxForm文件和应用引擎 blobstore 时遇到了一些困难。我怀疑困难是因为 blobstore 上传处理程序(blobstore_handlers.BlobstoreUploadHandler 的子类)要求重定向响应,而不是返回任何内容,但我不确定。我期望得到一个 XML 文档来使用,并且它似乎按预期到达浏览器,但我无法掌握它 - 详细信息如下。
我的应用引擎 blobstore 上传处理程序如下 -
class UploadHandler(blobstore_handlers.BlobstoreUploadHandler):
def post(self):
upload_files = self.get_uploads('file') # 'file' is file upload field in the form
blob_info = upload_files[0]
entity_key = self.request.get("entityKey")
// Update a datastore entity with the blobkey (not shown)
// redirect to the uri for the updated entity
self.redirect('%s.xml' % entity_key)
最后的重定向是到我的应用程序中的一个 uri,它返回一个 xml 文档。查看服务器输出,没有任何迹象表明有任何问题 - 重定向服务,它按预期返回 xml 文档,具有正确的 mime 类型 - 所以表单提交看起来不错,服务器对该提交的响应看起来好的。
我使用 ajaxForm 的客户端代码如下所示(抱歉,它有点迟钝,但我认为问题不在这里)-
// Create the form
var dialogForm = $("<form method='POST' enctype='multipart/form-data'>")
.append("<span>Upload File: </span><input type='file' name='file'/><br>")
.append("<input type='hidden' name='entityKey' value='" + entityKey + "'/>")
.append("<input type='hidden' name='entityField' value='image'/>")
.append("<input type='button' value='Wait...' disabled='disabled'/>");;
dialogForm.ajaxForm();
// Turn the form button into a nice jQuery UI button and add a click handler
$("input[type=button]", dialogForm[0]).button()
.click(function() {
log.info("Posting to : " + dialogForm.attr('action'));
dialogForm.ajaxSubmit({
success: function(responseText, statusText, xhr, $form) {
log.info("Response: " + responseText + ", statusText: " + statusText + ", xhr: " + goog.debug.expose(xhr) + ", form:" + goog.debug.expose($form));
}
});
});
之后我在表单上设置了“操作”(并启用了按钮)-
$.get('/blob_upload_url', function(data) {
dialogForm.attr("action", data);
$("input[type=button]", dialogForm[0]).attr("value", "Upload").button("option", "disabled", false);
};
我在那里使用了一个小的 google 闭包来记录和暴露对象。一切看起来都不错 - 正如预期的那样,它正确地发布到服务器,并调用了成功函数。如果我在 Chrome 开发工具中查看文档结构,我可以看到正在简要创建 iFrame 以处理文件上传和响应。
问题是我从来没有在响应中得到 xml 文档。日志输出如下 -
[ 18.642s] [Panel] Response: null, statusText: success, xhr: 0 = [object HTMLFormElement]
length = 1
selector =
jquery = 1.4.2, form:0 = [object HTMLFormElement]
length = 1
selector =
jquery = 1.4.2
Resource interpreted as document but transferred with MIME type application/xml [ABCdefGH]
chrome 对 mime 类型的抱怨可能非常相关,但我没有建立联系 :) - 至少这意味着它在某个时候正在获取 xml 文档。在 Chrome 资源视图中,您可以看到 POST,响应是 302 重定向,然后是后续的 GET 请求 - 其标头看起来不错 -
Request URL:http://localhost:8081/_ah/upload/ABCdefGH
Request Method:GET
Status Code:200 OK
Request Headers
Referer:http://localhost:8081/
User-Agent:Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.70 Safari/533.4
Response Headers
Cache-Control:no-cache
Content-Length:2325
Content-Type:application/xml
Date:Sun, 20 Jun 2010 20:47:39 GMT
Expires:Fri, 01 Jan 1990 00:00:00 GMT
Server:Development/1.0
Chrome 资源视图不会向我显示该文档的内容(只是空白),但 Firefox 会显示并且 xml 文档看起来不错。然而,Firefox 给出了相同的最终结果 - ajaxSubmit() responseText 为 null。
我想我只是在某个地方出现了大脑衰退,但这真的让我很难过。获取该 xml 文档的任何指针都会很棒 - 干杯,
科林