我正在尝试dropzone.js,并且无法弄清楚如何让浏览器知道上传完成。
我使用this example作为我的基础。它将其发送到正确的操作,我让它发送csrf-token但我似乎无法找到如何发送进度数据并在上传完成时告诉它。
答案 0 :(得分:1)
试试这个:
$(function() {
// Now that the DOM is fully loaded, create the dropzone, and setup the
// event listeners
var myDropzone = new Dropzone("#my-dropzone");
myDropzone.on("success", function(file) {
/* Maybe display some more file information on your page */
});
})