我想知道当我在ORACLE APEX中单击按钮时,如何使用javascript调用POST Web服务方法。
谢谢你的帮助
var url = "your_url";
xhr = new XMLHttpRequest();
xhr.open("POST", url, true);
xhr.setRequestHeader("Content-type", "application/json");
xhr.onreadystatechange = function ()
{
if (xhr.readyState == 4 && xhr.status == 200) {
//do whatever you want to do
} else {
//do whatever you want to do
}
}
xhr.send(JSON.stringify({
"key_1": "value_1",
"key_2": "value_2"
}));
希望这对您有所帮助。