我的dropzone js在上传后没有显示图像预览 我的js代码是:
$(document).ready(function() {
Dropzone.autoDiscover = false;
Dropzone.options.myDropzone = {
maxFiles: 5,
createImageThumbnails: true,
acceptedFiles: ".jpeg,.jpg,.png,.gif",
uploadMultiple: true,
init: function() {
this.on("addedfile", function(file) {});
}
};
另外,我已经更改了预览路径的CSS(如果是这样的话),仍然没有运气。
请帮忙。