我有一般形式,我需要包含dropzone来上传多个图像以及其他输入。我从dropzone站点获得了dropzone.js和dropzone.css文件,并在视图文件中包含了路径。但是我无法将dropzone中的文件发送到控制器以保存为post。所有其他输入都是按要求提交的,而不是dropzone中的文件。
我的表格如下:
<form method="post" action="
{{route('property.save')}}" enctype="multipart/form-
data">
{{csrf_field()}}
<...other input fields...>
<div id="myDropZone" class="dropzone dropzone-design">
<div class="dz-default dz-message"><span>Drop files here to
upload</span></div>
</div>
<button name="submit" id="submit" type="submit">submit</button>
我已检查文件是否通过:
if ($request->hasFile('file')){
return "true";
}else{
return "false";
}
返回false。我也根据网络教程编辑了dropzone.js文件但是找不到成功所以我最终在这里发布了这个问题。