我确实有一个上传表单,我将文件上传到服务器,如下所示:
<form method="POST" enctype="multipart/form-data" id="file_upload"
style="height: inherit; width: inherit; display: flex; justify-content: center; align-items: center">
<label>
<div style="padding: 16px; text-align: center">
<input type="file" name="datei" accept="application/pdf" oninput="upload_file()">
<img src="res/icon/cloud_upload.svg"
style="width = 128px; height: 128px; display: inline-block;"><br>
</div>
</label>
</form>
function upload_file() {
let upload_form = document.getElementById('file_upload');
upload_form.submit();
}
现在,我确实遇到了运行iOS的设备无法将任何内容上传到服务器的问题。仅在iOS(和iPadOS)上会发生此问题,并且该问题与所使用的浏览器无关。 有关如何在iOS上解决此问题的任何建议?