有没有办法将上传的文件存储为 html 元素,例如dropzone.js中的文件输入?而且不自动上传?
我已经提到了这些,但没有帮助。
目前我正在像这样直接将文件上传到服务器,
$(this).dropzone({
url: base_url + 'document-manager',
addRemoveLinks: true,
dictDefaultMessage: 'Drop files or click here to upload',
maxFiles: 1,
init: function () {
myDropzone = this;
myDropzone.on("success", function (file, response) {
fileId = response;
});
myDropzone.on("removedfile", function (file) {
$.ajax({
type: "delete",
url: base_url + 'document-manager/' + fileId,
async: false,
data: {'_token': $('[name=_token').val()}
}).responseText;
});
}
});
现在我想将文件作为文件输入发送。在 dropzone.js 中是否有可能?
PS我只想存储从dropzone中选择的文件以存储在一些自定义文件输入中。