我在Zend Framework 1中工作,我在控制器中有这个功能:
public function uploadAction()
{
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender();
$data = [];
if ($this->getRequest()->isPost()) {
$path = /cronjobs/uploads';
// Clean $path directory OOP way using SPL
$di = new RecursiveDirectoryIterator($path, FilesystemIterator::SKIP_DOTS);
$ri = new RecursiveIteratorIterator($di, RecursiveIteratorIterator::CHILD_FIRST);
foreach ($ri as $file) {
$file->isDir() ? rmdir($file) : unlink($file);
}
$adapter = new Zend_File_Transfer_Adapter_Http();
$adapter->addValidator('Extension', false, ['extension' => 'csv', 'case' => true]);
$adapter->addValidator('MimeType', false, ['extension' => 'text/plain']);
// Check if the uploaded file is valid
$errors[] = $adapter->isValid() === false ? $adapter->getMessages() : '';
$file = (array) $adapter->getFileInfo()['file'];
$ext = end(explode('.', $file['name']));
$new_path = $file['tmp_name'];
// Check file size
$checkFileSize = Attachment::checkMaxfileSize($file['size']);
if (!$checkFileSize['accept']) {
echo json_encode($checkFileSize['message']);
return true;
}
$data['file'] = array(
'name' => $file['name'],
'size' => $adapter->getFileSize(),
'file_path' => $new_path,
'file_ext' => $ext
);
$data['var'] = '';
} else {
$data['error'] = 'Invalid request.';
}
return $this->_helper->json($data);
}
这个方法通过AJAX调用如下:
$('#fileupload').show().fileupload({
url: url,
type: "POST",
cache: false,
dataType: 'json',
done: function (e, data) {
console.log(data.result);
},
error: function (xhr, textStatus, errorThrown) {
console.log(xhr + " " + textStatus + " " + errorThrown);
}
})
出于某种原因,只要我在控制器中调用$adapter->isValid()
,AJAX响应就会中断。我可以说问题在那里,因为如果我评论那段代码一切正常。
这是我目前收到的消息:
POST http://localhost/admin/upload net::ERR_EMPTY_RESPONSE
massive_charge_types_file_upload.js:147 [object Object] error
阅读完所有以下主题后:
我没有想法而且我被困住了,因为无法找到导致这种行为的原因。
更新
我认为问题出现在返回布尔值的isValid()
方法上,但由于某种原因,这会破坏我的响应。有什么想法吗?
有人可以帮我吗?
答案 0 :(得分:0)
您的MimeType验证器的语法似乎是错误的:
$adapter->addValidator('MimeType', false, ['extension' => 'text/plain']);
应该是:
$upload->addValidator('MimeType', false, array('text/plain'));
如上所述:
https://framework.zend.com/manual/1.12/en/zend.file.transfer.validators.html
由于您的文件未通过(不可能)验证测试 - 我猜这是导致无结果的原因?
答案 1 :(得分:0)
经过几次尝试后,我通过添加以下内容来实现它:
if ($adapter->isValid() === false) {
$data['error'][] = $adapter->getMessages();
echo json_encode($data);
return true;
}
我需要使用原始json_encode()
PHP函数,如果我使用Zend Framework JSON帮助器,例如:$this->_helper->json($data)
响应不起作用。
我认为这是对Jquery插件的限制,不确定是不是很难。