我正在使用最新的 Dropzone.js 版本 3.7.1 和 PHP 脚本将文件上传到服务器
我想在图像上将消息返回到拖放区区域,所以我退出
header('HTTP/1.1 500 Internal Server Error');
header('Content-Type: application/json');
exit();
这会在图像上显示一个通用的 dropzone 错误,但如果我使用
header('HTTP/1.1 500 Internal Server Error');
header('Content-Type: application/json');
exit("My error");
我收到“来自服务器的无效 JSON 响应”。
如果我使用
header('HTTP/1.1 500 Internal Server Error');
header('Content-type: application/json');
exit(json_encode(array('message' => '$msg', code => 500)));
我得到“[对象对象]”
拖放区是否将文件上传作为数组或单个文件传递?