当我尝试使用$ _FILES获取图像名称时,我收到此消息。
注意:未定义索引: C:\ xampp \ htdocs \ upload_form \ upload_query.php 中的图片 10
我有一个表单,可以将有关图像的信息上传到mysql数据库(phpmyadmin),然后使用JavaScript清除表单,以便用户可以上传其他图像和信息。 我已经读过你不能使用$ _FILES以及JavaScript,但我不确定为什么,我也很感激解决方案。
我是php和JavaScript的新手。
这是JavaScript。
$('form').on('submit',function() {
var that= $(this),
url = that.attr('action'),
type = that.attr('method'),
data = {};
that.find('[name]').each(function(index,value) {
var that = $(this),
name = that.attr('name'),
value = that.val();
data[name] = value;
});
$.ajax({
url: url,
type: type,
data: data,
success: function(response){
console.log(response);
}
});
document.getElementById("upload_form").reset();
return false;
});
这是php。
//image properties
$name = $_FILES['image']['name'];
$size = $_FILES['image']['size'];
$temp = $_FILES['image']['tmp_name'];
$error = $_FILES['image']['error'];
$type = $_FILES['image']['type'];
//****************
这是表格的一部分。
<form action='upload_query.php' class='appnitro' enctype='multipart/form-data' id='upload_form' method='post' name='upload_form'>
<ul>
<li id='li_1'>
<label class='description' for='image'>Upload a Picture</label>
<div>
<input class='element file' id='image' name='image' required="" type='file'>
</div>
</li>
<li id='li_2'><label class='description' for='name'>Name</label> <span><input class='element text' id='first_name' maxlength='255' name='first_name' placeholder='First Name.' required="" size='12' value=''></span> <span><input class='element text' id='last_name' maxlength='255' name='last_name' placeholder='Last Name.' required="" size='18' value=''></span></li>
</ul>
</form>
等
答案 0 :(得分:3)
是的,您可以使用$.ajax
上传文件,这是
首先让我们有一个带有id的典型表单。此表单可以包含您希望的一个或多个文件。
<form id='fileupload' method='post' enctype="multipart/form-data" ...
然后在jQuery中执行以下操作。
$('#btnupload').click(function () {
//the key is FormData object
var formData = new FormData(document.getElementById('fileupload'));
$.ajax({
url: 'upload.php', //server script to process data
type: 'POST',
success: function (json) {}
data: formData,
dataType: "json",
cache: false,
contentType: false,
processData: false
});
});
此处的关键是使用javascript FormData对象构建$.ajax
的数据参数
答案 1 :(得分:-1)
您无法使用AJAX发送文件(不是这种方式)。
如果要发送文件,请查看XMLHttpRequest2。 非常好的教程在这里 - http://www.html5rocks.com/en/tutorials/file/xhr2/