我正在制作一个简单的POST XMLHttpRequest,它会成功发布数据,但也会将paylod附加到URL。无论如何,数据没有附加到URL
tr{
border-top: hidden;
}
答案 0 :(得分:0)
这是因为您在发布内容时使用的标题:
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
将其更改为
xmlhttp.setRequestHeader("Content-Type", "application/json");