我有表格允许我提交文字+文件数量。用AJAX提交的表格。
因为我的上传功能提供了许多文件错误:
警告:move_uploaded_file(images / usersFiles / 14367317720-101.JPG)[function.move-uploaded-file]:无法打开流:没有这样的文件或 C:\ Program Files中的目录 第134行的(x86)\ wamp \ www \ new-site \ func \ global.func.php
第134行是:
if (move_uploaded_file($files['file']['tmp_name'][$i], USER_FILES.$files['file']['name'][$i]))
文件' var应该是数组(因为我可以加载文件数)。
如何解决错误?
HTML:
<form class="form-horizontal" action='#' method="post" id="addCommentForm" enctype="multipart/form-data">
<textarea class="form-control" name="post[text]"></textarea>
<input type='file' name='file[]' class='multi form-control' maxlength='1' accept='gif|jpg|png|bmp' id="files"/>
<a class="btn btn-primary" id="submit">submit</a>
</form>
JS:
$(function() {
$("#submit").click(function() {
var file_data = $('#files').prop('files')[0];
var form_data = new FormData();
form_data.append('file[]', file_data);
var files_data = form_data;
var act = 'add';
form_data.append('act', act);
form_data.append('post[text]', $("#addCommentForm").find("textarea").val());
$.ajax({
type: "POST",
url: "ajax/addPost.php",
dataType: 'text',
cache: false,
contentType: false,
processData: false,
data: form_data,
success: function(data)
{
$('#commentsBox').html(data);
$("#addCommentForm")[0].reset();
}
});
return false; // avoid to execute the actual submit of the form.
});
});
服务器:
function upload_files ($ownerID, $msg, $files, $type)
{
$dateLX = get_current_linuxTime();
///////// Upload files //////////////
if(!empty($files))
{
foreach($files['file']['name'] as $i => $fileName)
{
$fileSurffix = pathinfo ($_FILES['file']['name'][$i]);
$fileSurffix = $fileSurffix['extension'];
$files['file']['name'][$i] = str_replace(' ','',$files['file']['name'][$i]);
$files['file']['name'][$i] = $dateLX.$i."-".$ownerID.".".$fileSurffix;
$fileName = $files['file']['name'][$i];
if (move_uploaded_file($files['file']['tmp_name'][$i], USER_FILES.$files['file']['name'][$i]))
{
$uploadFilesQuery = "INSERT INTO `files` (ownerID, name, type)
VALUES('$ownerID', '$fileName', '$type')";
$res = mysql_query($uploadFilesQuery);
if (!$res)
$msg['error']['uploadFile'] = "error <br />".mysql_error();
}
elseif ($files['file']['error'][$i] != 4)
$msg['error']['uploadFile'] = "ERROR ";
}
}
return ($msg);
}
答案 0 :(得分:0)
King,在你的php文件中做一个var_dump,然后在#34; move_uploaded_file&#34;那样:
echo "<pre>";
var_dump($files);
echo "</pre>";
如果您的表单确实发送了多个文件,则需要更改[$ i]位置,因为&#34;文件&#34;是一个数组:
move_uploaded_file($files['file'][$i]['tmp_name'], USER_FILES.$files['file'][$i]['name'])
但是,如果您的表单只发布一个文件,则必须更改表单(删除输入名称中的[]):
<input type='file' name='file' class='multi form-control' maxlength='1' accept='gif|jpg|png|bmp' id="files"/>
和php(删除[$ i],就行了:
move_uploaded_file($files['file']['tmp_name'], USER_FILES.$files['file']['name'])
现在有效吗?