我想知道如何使用ajax使用$ _POST和$ _FILES,我正在尝试上传图片并在帖子上插入数据库。
我已经尝试但它不起作用。
的index.html
<div class="form-group">
<label> img </label>
<input type="file" name="img" id="img" />
<input type='hidden' id='value' value='<?=$_GET["p"]?>' />
</div>
ajax.js
$(document).ready(function() {
$('#upload').click(function() {
var value = $('#value').val();
var img = $('#img').val();
var string= 'value=' + value + '&img=' + img;
$.ajax({
type: "POST",
url: "ajax.php",
data: string,
dataType: "json",
success: function(data) {
var success = data['success'];
if (success == true) {
console.log('success');
} else {
console.log('error');
}
}
});
return false;
});
});
ajax.php
<?php
if(isset($_POST["value"]) && isset($_FILES["img"])) {
echo json_encode(array("success" => true));
} else {
echo json_encode(array("success" => false));
}
?>
答案 0 :(得分:1)
最好的方法是首先将图像转换为base64。此转换在更改侦听器中完成。
var files = []; $("input[type=file]").change(function(event) { $.each(event.target.files, function(index, file) { var reader = new FileReader(); reader.onload = function(event) { object = {}; object.filename = file.name; object.data = event.target.result; files.push(object); }; reader.readAsDataURL(file); }); }); $("form").submit(function(form) { $.each(files, function(index, file) { $.ajax({url: "/ajax-upload", type: 'POST', data: {filename: file.filename, data: file.data}, success: function(data, status, xhr) {} }); }); files = []; form.preventDefault(); });