我可以发送如下请求吗?使用 JSON 样式对象分配参数。我只得到错误。但是当我使用 REST 客户端并选择 RAW 数据时,就可以了。我想我一定写错了代码。如何在 JavaScript 中发送原始 JSON 数据?有人可以帮我吗?
xmlhttp = new XMLHttpRequest();
var url = "https://someURL";
xmlhttp.open("POST", url, true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.onreadystatechange = function () { //Call a function when the state changes.
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
alert(xmlhttp.responseText);
}
}
var parameters = {
"username": "myname",
"password": "mypass"
};
// Neither was accepted when I set with parameters="username=myname"+"&password=mypass" as the server may not accept that
xmlhttp.send(parameters);