Я также получил эту ошибку, даже когда файлы были успешно загружены.Проблема, с которой я столкнулся, заключалась в том, что я возвращал.Дополнительную информацию можно найти здесь https://github.com/blueimp/jQuery-File-Upload/wiki/Setup и раздел, помеченный Использование загрузки файла jQuery (версия пользовательского интерфейса) с пользовательским обработчиком загрузки на стороне сервера
, поэтому в основном говорится: "Обратите внимание, что ответом всегда должен быть объект JSON, содержащий массив файлов, даже если загружен только один файл." Вы все равно должны передать массив файлов обратно, даже если вы получили ошибку на стороне сервера.
Вот пример моей функции загрузки (часть ключей - "echo json_encode"):
function upload_file($component_files_id = null,$thumb_width = 400)
{
$config['upload_path'] = ($component_files_id) ? './documents/component_files/'.$component_files_id : './documents/image_uploads';
if (!file_exists($config['upload_path']))
@mkdir($config['upload_path'], 0777, true);
$config['allowed_types'] = 'gif|jpg|png|pdf|doc|docx|docm|odt|xls|xlsx|xlsm|ods|csv';
$config['max_size'] = '10000'; #in KB
$config['max_width'] = '5000';
$config['max_height'] = '5000';
$this->load->library('upload', $config);
if (!$this->upload->do_upload())
{
$error = $this->upload->display_errors('','');
if(is_ajax()){
$file['error'] = $error;
echo json_encode(array('files'=>array($file)));
}
else
set_message($error,'error',true);
}
else
{
$file = $this->upload->data();
$file['is_image'] = ($file['is_image'] == '1') ? 'TRUE' : 'FALSE';
$file['updated_by'] = get_user('user_id');
$file['created_by'] = get_user('user_id');
if($component_files_id)
$file['component_files_id'] = $component_files_id;
//save the file details to the database
$file_id = $this->page_model->save_file($file);
if($file['is_image'] == 'TRUE'){
$thumb_width = ($component_files_id) ? 290 : $thumb_width;
$this->_create_thumbnail($file_id,$thumb_width);
}
//set the data for the json array
$info->id = $file_id;
$info->name = $file['file_name'];
$info->size = $file['file_size'];
$info->type = $file['file_type'];
if($file['is_image'] == 'TRUE'){
$info->url = base_url().'files/image/'.$file_id;
$info->thumbnail_url = base_url().'files/image/'.$file_id.'/thumb';
}
else{
$info->url = base_url().'files/download/'.$file_id;
$info->thumbnail_url = base_url().'images/document-icon.png';
}
$info->delete_url = base_url().'files/delete_document/'.$file_id;
$info->delete_type = 'DELETE';
$files['files'] = array($info);
header('Content-type: text/html');
echo json_encode($files);
}
}