我正在使用 Jquery_fileupload (JFU) 将文件发送到亚马逊 s3 存储桶。
当用户选择文件时,文件自动上传成功,亚马逊返回状态码 204 no content。为简单起见,我已更改 s3 策略以返回 200 代码。
问题是即使没有错误,JFU 也会为每个文件提供错误消息:
在 Firefox 中它是: SyntaxError: JSON.parse: unexpected end of data
在 chrome 中它是: SyntaxError: Unexpected end of input
任何解决此问题的想法都会有所帮助。谢谢
JFU设置:
$(document).ready(function() {
$('#fileupload').fileupload({
dropZone: $('#dropzone'),
autoUpload: true,
paramName: 'file',
singleFileUploads: false,
limitMultiFileUploads: 1,
sequentialUploads: true,
multipart: true,
uploadTemplateId: null,
downloadTemplateId: null,
filesContainer: $('#upload-files-container'),
uploadTemplate: function (o) {
var rows = $();
$.each(o.files, function (index, file) {
var row = $('<tr class="template-upload fade">' +
'<td class="preview"><span class="fade"></span></td>' +
'<td class="name"></td>' +
'<td class="size"></td>' +
(file.error ? '<td class="error" colspan="2"></td>' :
'<td><div class="progress progress-info progress-striped active">' +
'<div class="bar" style="width:0%;"></div></div></td>'
) + '<td class="cancel"><button class="btn btn-warning">Cancel</button></td></tr>');
row.find('.name').text(file.name);
row.find('.size').text(o.formatFileSize(file.size));
if (file.error) {
row.find('.error').text(
locale.fileupload.errors[file.error] || file.error
);
}
rows = rows.add(row);
});
return rows;
},
downloadTemplate: function (o) {
var rows = $();
$.each(o.files, function (index, file) {
var row = $('<tr class="template-download">' +
(file.error ? '<td></td><td class="name"></td>' +
'<td class="size"></td><td class="error" colspan="2"></td>' :
'<td class="preview"></td>' +
'<td class="name"><a></a></td>' +
'<td class="size"></td><td colspan="2"></td>'
) + '</tr>');
row.find('.size').text(o.formatFileSize(file.size));
if (file.error) {
row.find('.name').text(file.name);
row.find('.error').text(
locale.fileupload.errors[file.error] || file.error
);
} else {
row.find('.name a').text(file.name);
if (file.thumbnail_url) {
row.find('.preview').append('<a><img></a>')
.find('img').prop('src', file.thumbnail_url);
row.find('a').prop('rel', 'gallery');
}
row.find('a').prop('href', file.url);
}
rows = rows.add(row);
});
return rows;
}
})
});
S3 政策数据(如果有帮助):
def policy_data
{
expiration: @options[:expiration],
conditions: [
["starts-with", "$utf8", ""],
["starts-with", "$key", ""],
["content-length-range", 0, @options[:max_file_size]],
{bucket: @options[:bucket]},
{acl: @options[:acl]},
{success_action_status: "200"}
]
}
end