我有一个基本的dropzone形式:
<form action="/library/annual-equipment-requests/upload-files" class="dropzone">
<input name="record" type="hidden" value="Value">
<div class="fallback">
<input name="file" type="file" multiple="">
</div>
</form>
这有时起作用而不是其他起作用。当它工作时,我可以看到网络开发人员工具中的帖子数据结果:
请求有效负载
------WebKitFormBoundaryI7wN7T1SFcHzGC2t
Content-Disposition: form-data; name="record"
Value
------WebKitFormBoundaryI7wN7T1SFcHzGC2t
Content-Disposition: form-data; name="file"; filename="Lighthouse.jpg"
Content-Type: image/jpeg
当它不起作用时......
请求有效负载
------WebKitFormBoundaryI7wN7T1SFcHzGC2t
Content-Disposition: form-data; name="file"; filename="Lighthouse.jpg"
Content-Type: image/jpeg
有什么想法吗?