我正在尝试从jQuery文件上传BlueImp的fileupload模块返回缩略图URL。
这是我的上传程序脚本:
<script>
/*jslint unparam: true */
/*global window, $ */
$(function () {
'use strict';
// Change this to the location of your server-side upload handler:
var url = 'server/php/';
$('#fileupload').fileupload({
url: url,
dataType: 'json',
done: function (e, data) {
$.each(data.result.files, function (index, file) {
$('<div class="box">').appendTo('#files');
$('.box').last().html('<a href="'+file.url+'"><img width="220px" height="120px" src="'+file.url+'"/></a>
});
},
progressall: function (e, data) {
var progress = parseInt(data.loaded / data.total * 100, 10);
$('#progress .progress-bar').css(
'width',
progress + '%'
);
}
}).prop('disabled', !$.support.fileInput)
.parent().addClass($.support.fileInput ? undefined : 'disabled');
});
</script>
如您所见,我可以返回“file.url”(示例:http://website.com/server/php/files/image.png) 但我想像那样返回“file.thumbnailURL”(例如:http://website.com/server/php/thumbnails/image.png)
$('.box').last().html('<a href="'+file.url+'"><img width="220px" height="120px" src="'+file.thumbnailURL+'"/></a>
但它未定义(我知道) 那我怎么定义file.thumbnailURL?定义file.url file.name ...?
的代码在哪里谢谢你, 大卫。
答案 0 :(得分:0)
你的php脚本是否创建了缩略图?您可以console.log(data)
并检查它是否是响应的一部分。
答案 1 :(得分:0)
// try
+ data.files[0].thumbnailUrl +
// or
+ data.files.thumbnailUrl +
// It worked for me