【发布时间】:2015-01-17 05:16:28
【问题描述】:
我正在使用 Dropzone.js 和 Angular.js 来上传图像,但我没有找到方法,我如何将缩略图上传到我的服务器。
.dropzone({
url: "/gallery/add",
maxFilesize: 100,
paramName: "uploadfile",
createImageThumbnails: true,
thumbnailWidth: 200,
init: function() {
this.on('addedfile', function(file) {
// maybe something here
});
this.on('thumbnail', function(file){
// or here
});
}
});
只有缩略图有问题
【问题讨论】:
-
它不是 dropzone.js,但它也有上传文件的能力,并且在演示页面中,显示缩略图:) angular-file-upload.appspot.com
标签: javascript angularjs image-uploading dropzone.js