我不知道为什么我会收到未定义索引的错误。我想我正确地将值发送到 php 。或者我在我的代码中遗漏了什么?
这是我使用的 jquery 代码:
$(function() {
$('button').button();
$('.update-profile-pic').click(function() {
$('#dialog').dialog({
width:350,
modal:true,
buttons: {
'Upload': function() {
$.ajax({
url: 'upload-image.php',
method: 'post',
data: { uploadedfile: $('.profile-pic-name').val().trim() },
success: function(data) {
$('.new-profile-pic').html(data);
}
});
}
}
});
});
});
这是我的html代码:
<button class="update-profile-pic">Update Profile Picture</button>
<div id="dialog">
<p class="new-profile-pic">
<!--Image should be here-->
</p>
<form enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="100000">
<input class="profile-pic-name" name="uploadedfile" type="file">
</form>
<div>
这是我的php代码:
<?php
$target_path = "uploads/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo '<img alt="" src="'.$target_path.'">';
} else{
echo "There was an error uploading the file, please try again!";
}
?>
这是我点击上传后萤火虫控制台的结果:
这是示例错误输出: