Dropzone.js remove button with php(Dropzone.js 用 php 删除按钮)
问题描述
我使用 dropzone.js 来制作一个不错的上传表单.我链接了 php 代码来上传文件,并设置了 addRemoveLinks=true 所以我有删除按钮.
I use dropzone.js for a nice upload form. I linked the php code to upload the files and i setted addRemoveLinks=true so i have the remove button.
我需要一个想法,当我点击删除按钮时,如何有效地删除使用 php 代码上传的文件.
I need an idea how to efectivly delete the filse uploaded with a php code when i hit remove button.
php 做起来很简单,但我不需要知道如何关联它们.我已经尝试在此函数中使用 $.post 删除文件:函数(文件)但没有成功.
The php is simple to do but i need t know how to relate them. I already tryed using $.post in this function removedfile: function(file) but no succes.
removedfile: function(file) {
$.post("test.php");
var _ref;
return (_ref = file.previewElement) != null ? _ref.parentNode.removeChild(file.previewElement) : void 0;
},
推荐答案
首先,你不应该简单地覆盖默认的 removedfile
事件处理程序,而应该注册你自己的处理程序.
First off, you shouldn't simply overwrite the default removedfile
event handler, but rather register your own handler along with it.
您需要先从服务器取回 ID(这样您就知道如何关联它),然后使用它来设置删除调用.
You need to first get the ID back from the server (so you know how to relate to it) and then use this to setup the delete call.
Dropzone.options.myDropzone = {
init: function() {
this.on("success", function(file, response) {
file.serverId = response; // If you just return the ID when storing the file
// You can also return a JSON object then the line would
// look something like this:
//
// file.serverId = response.id;
//
// In that case make sure that you respond with the mime type
// application/json
});
this.on("removedfile", function(file) {
if (!file.serverId) { return; } // The file hasn't been uploaded
$.post("delete-file.php?id=" + file.serverId); // Send the file id along
});
}
这篇关于Dropzone.js 用 php 删除按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Dropzone.js 用 php 删除按钮


基础教程推荐
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01