Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我在 XAMPP 中检查了 Windows 7上的系统 jQuery 文件上传演示
一切正常,我可以上传图片并删除
但是在Linux服务器上我不能删除图片可能是什么问题
您的问题可能是您的服务器不支持DELETE请求。
DELETE
转到UploadHandler.php,在该行'delete_type' => 'DELETE'中,将其更改为'delete_type' => 'POST'。
UploadHandler.php
'delete_type' => 'DELETE'
'delete_type' => 'POST'