我对使用FormData
对象还很陌生,但仍在尝试熟悉它的工作方式。因此,我设法将视频文件发布到php脚本,该脚本处理了将视频文件上传/移动到文件夹的操作。但是,我无法传递或发布其他表单输入信息,例如在表单的文本字段中键入的文本。
我的目标是将所有表单数据(视频文件和输入字段上的文本)传递/发布到php脚本中。我尝试var_dump
$_POST
数组以查看是否有$_FILES['file']
以外的其他数据。
我可以获取文件输入,但不能获取文本输入。我想一键发送所有的表单数据。
下面是我从var_dump()
-ing $_POST
和$_FILES
中学到的东西
array(0) {
}
array(1) {
["file"]=>
array(5) {
["name"]=>
string(48) "How to Create App Shortcut on Ubuntu Desktop.mp4"
["type"]=>
string(9) "video/mp4"
["tmp_name"]=>
string(14) "/tmp/phprG6kRC"
["error"]=>
int(0)
["size"]=>
int(10522522)
}
}
它显示array(0){}
的{{1}}
index.php
var_dump($_POST)
index.js
<form id="myForm" method="POST" enctype="multipart/form-data">
<label>Lastname: </label> <input type="text" name="lastname" id="lastname" required/><br/>
<label>Firstname: </label> <input type="text" name="firstname" id="firstname" required/><br/>
<label>Middlename: </label> <input type="text" name="middlename" id="middlename" required/><br/>
<label class="modal_label" id="modalLbl_browseVideo">
Select Video
<input type="file" name="file" id="file_input" value="Select Video" accept="video/*"/>
</label>
<button name="myButton" id="myButton">
Upload
</button>
<br/>
<label id = "errorLabel"></label>
</form>
<script src="js/jquery-3.3.1.js"></script>
<script src="js/index.js"></script>
upload.php
$('#myButton').click(function(){
upload();
});
function upload() {
var formData = new FormData($('#myForm')[0]); //initialized with myForm
$.ajax({
url: 'upload_video.php',
type: 'POST',
data: formData,
cache: false;
processData: false, // tell jQuery not to process the data
contentType: false, // tell jQuery not to set contentType
success: function (data) {
console.log(data);
alert(data);
},
error: function (x, e) {
if (x.status == 0) {
alert('You are offline!!\n Please Check Your Network.');
} else if (x.status == 404) {
alert('Requested URL not found.');
} else if (x.status == 500) {
alert('Internal Server Error.');
} else if (e == 'parsererror') {
alert('Error.\nParsing JSON Request failed.');
} else if (e == 'timeout') {
alert('Request Time out.');
} else {
alert('Unknown Error.\n' + x.responseText);
}
}
});
}
据我了解,var_dump($_POST);
var_dump($_FILES);
是使用表单中包含在var formData = new FormData($('#myForm')[0]);
变量中的所有数据初始化的。但这只是在formData
为什么不能显示发布的其他表单数据值,例如姓,名和中间名?
任何建议,我将不胜感激。
谢谢。
答案 0 :(得分:0)
我能够通过将值附加到formData
对象来解决我的问题。最适合我要尝试的工作。
index.js
function uploadVideo() {
var formData = new FormData();
var videoFile = $("#file_input")[0].files[0];
formData.append('file', videoFile);
formData.append('lastname',$('#lastname').val());
formData.append('firstname',$('#firstname').val());
formData.append('middlename',$('#middlename').val());
$.ajax({
url: 'upload_video.php',
type: 'POST',
data: formData,
cache: false,
processData: false, // tell jQuery not to process the data
contentType: false, // tell jQuery not to set contentType
success: function (data) {
console.log(data);
// alert(data);
},
error: function (x, e) {
testForError(x,e);
}
});
}
upload.php
echo $_POST['lastname'];
echo $_POST['firstname'];
echo $_POST['middlename'];
我对其进行了测试,当我success: function(data){}
时,我能够从console.log(data);
获得姓氏,名字和中间名的值
这应该为其他人尝试并可能解决他们与此有关的问题提供参考。