gpt4 book ai didi

javascript - ajax 返回负载而不是表单数据

转载 作者:行者123 更新时间:2023-12-03 11:34:28 27 4
gpt4 key购买 nike

我返回了有效负载而不是表单数据,并且无法使用 php 检索值我需要一个帖子类型的表单数据,但我不知道如何

    $('#send_avatar').click(function(){

var x=document.getElementById("x").value;
var y=document.getElementById("y").value;
var w=document.getElementById("w").value;
var h=document.getElementById("h").value;

var fd = new FormData();

//fd = 'x=' + x + '&y=' + y + '&w=' + w + '&h=' + h ;

fd.append('file', $('#uploadImage')[0].files[0]);
fd.append('x', x);
fd.append('y', y);
fd.append('w', w);
fd.append('h', h);



$(".ris").html("<img src='images/loading.gif' height='30px'>");


//dataString.append("image", immagine);

$.ajax({
type: "POST",
url: "funzioni/upload_avatar.php",
data: fd,
async: false,
cache: false,
contentType: "X-Requested-With:XMLHttpRequest",
processData: false,
success: function(response){
$(".ris").html(response);
}
});

});

我该怎么做?

最佳答案

这个:

contentType: "X-Requested-With:XMLHttpRequest",

不是有效的内容类型。删除该行。

关于javascript - ajax 返回负载而不是表单数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26578744/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com