我有现有的代码来获取 file.name
uploader.bind('FilesAdded', function(up, files) {
$.each(files, function(i, file) {
$('#filelist').append(
'<div id="' + file.id + '">' +
file.name + ' (' + plupload.formatSize(file.size) + ') <b></b>' +
'</div>');
});
up.refresh(); // Reposition Flash/Silverlight
});
我得到了 file.name 和 file.id 但我怎样才能得到 file.path 或 file.originalPath ?我需要获取我上传的每张图片的目录路径。