我有一个非常基本的文件上传系统,使用 PHP 和 Dropzone。上传PHP文件如下<?phperror_reporting(E_ALL); // define absolute folder path $brand = $_POST['brand']; $reference = $_POST['reference']; $dest_folder = 'images/'.$brand.'/'; $url = 'https://www.example.com/testupload/'; if(!empty($_FILES)) { if(!file_exists($dest_folder) && !is_dir($dest_folder)) mkdir($dest_folder); foreach($_FILES['file']['tmp_name'] as $key => $value) { $ext = strtolower(pathinfo($_FILES['file']['name'][$key],PATHINFO_EXTENSION)); if(file_exists($dest_folder) && !is_dir($dest_folder)){ continue; }else{ mkdir($dest_folder); } $imgName = $brand."-".$reference.'-picture'.$key.'.'.$ext; $tempFile = $_FILES['file']['tmp_name'][$key]; $targetFile = $dest_folder.$imgName; move_uploaded_file($tempFile,$targetFile); } $dir = $dest_folder; $data = scandir($dir); $arr = []; foreach($data as $key=>$dataVal) { if($dataVal!='.' && $dataVal!='..'){ $arr[] = $url.$dir.$dataVal; } } $imgstring = implode(",",$arr); /** * Response * return json response to the dropzone * @var data array */ $data = [ "file" =>$brand, "dropzone" => $_POST["dropzone"], "img"=>$imgstring ]; file_put_contents('abc.txt',$data); header('Content-type: application/json'); echo json_encode($data); exit();}我已经查过myDropzone.on("success", function(file,response) {
console.log(response.img);
$('#imgResponse').html(response.img);
});在上面的函数中,我能够运行警报,因此成功事件有效,但是console.log(response.img);不管用。它工作正常,但只是响应不正确,因此它在控制台中给出未定义的消息。相同的代码在一台服务器上工作正常,而在另一台服务器上我收到此错误。我还检查了服务器中是否启用了 json 模块,并使用示例代码进行编码和解码测试。我还检查了 phpinfo() 中启用的显示。我不明白为什么它在该服务器上不起作用。让我知道是否有人可以帮助我解决这个难题。
添加回答
举报
0/150
提交
取消