如何获得Dropzone.js仅在单击提交按钮时才上传文件?
2022-08-30 19:13:12
在过去的几天里,我一直在尝试在我的表单中实现Dropzone,但到目前为止,我没有运气弄清楚如何让它上传和处理图像,只有当提交按钮被点击时。因此,我决定来这里向你们寻求帮助。
我做了一个示例代码结构,所以你只能看看它所需要的东西。现在,我认为当我将一些图片放入Dropzone并单击按钮时,它应该按照从控制器触发collect_input功能的方式工作。但我不知道如何处理文件等。因此,我想我所要求的是关于如何处理表单中的文件的提示/解决方案,例如将它们保存到文件夹并向数据库添加条目。
我将在下面发布代码,如果你们中的任何一个人有任何提示或解决方案,请与我分享。我要提前感谢大家阅读本文并回复。顺便说一句,我在CodeIgniter工作。
[下载整个项目(css,js和php]http://puu.sh/5eqLc.zip
htdocs/application/controllers/test.php
<?php
class Test extends CI_Controller {
public function __construct() {
parent::__construct();
}
public function index() {
$this->load->view('test_view');
}
public function collect_input() {
}
}
htdocs/application/controllers/test_view.php
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<meta charset="utf=8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js" type="text/javascript"></script>
<!-- Load DropZone -->
<link href="<?php echo base_url(); ?>/css/basic.css" type="text/css" rel="stylesheet" />
<link href="<?php echo base_url(); ?>/css/dropzone.css" type="text/css" rel="stylesheet" />
<script src="<?php echo base_url(); ?>js/dropzone.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function()
{
var myDropzone = new Dropzone("div#myId", { url: "file-upload"});
});
</script>
<script type="text/javascript">
Dropzone.options.myId = {
// Prevents Dropzone from uploading dropped files immediately
autoProcessQueue: false,
init: function() {
var submitButton = document.querySelector("#add")
myDropzone = this; // closure
submitButton.addEventListener("click", function() {
myDropzone.processQueue(); // Tell Dropzone to process all queued files.
});
// You might want to show the submit button only when
// files are dropped here:
this.on("addedfile", function() {
// Show submit button here and/or inform user to click it.
});
}
};
</script>
</head>
<body>
<?php echo form_open('test/collect_input'); ?>
<!-- One of the many inputs of my form -->
<select id="list_type">
<option value="-1">Chooose a type</option>
<option value="1">>>Type A</option>
<option value="2">>>Type B</option>
</select>
<!-- Dropzone -->
<div id="myId" class="dropzone"></div>
<!-- Submit button-->
<input type="submit" id="add" name="add" value="Add!!">
</form>
</body>
</html>