相关疑难解决方法(0)

如何从dropzone.js上传和删除文件

我使用下面的代码已删除图像但缩略图仍然显示.

 Dropzone.options.myDropzone = {
  init: function() {
    this.on("success", function(file, response) {
      file.serverId = response; 

    });
    this.on("removedfile", function(file) {
      if (!file.serverId) { return; }
      $.post("delete-file.php?id=" + file.serverId); 
    });
  }
Run Code Online (Sandbox Code Playgroud)

javascript php jquery dropzone.js

52
推荐指数
1
解决办法
8万
查看次数

标签 统计

dropzone.js ×1

javascript ×1

jquery ×1

php ×1