标签: jquery dropzone.js
如何使用dropzonejs插件在javascript中获取文件内容。例如:
Dropzone.options.fbDropZone = { init: function () { alert(1); this.on("addedfile", function(file) { console.log(file); }); // How to get content here }