jQuery 文件上传:
$('#fileupload').fileupload({
xhrFields: {withCredentials: true},
url: 'http://URL/images/pre/',
add: function (e, data) {
var that = this;
$.ajax({
type : 'get',
url : 'http://URL/images/pre/',
dataType : 'jsonp',
jsonp : 'jsonp',
success : function(result) {
url = result.url.replace(...);
data.url = url;
data.submit();
}
});
}
});
data.submit() 将 POST 发送到 appengine,它返回 302(来自 webapp.RequestHandler 的重定向())。重定向后是否可以从此 POST 获得响应?