当前位置:Gxlcms > JavaScript > JS使用json格式的POST请求方法

JS使用json格式的POST请求方法

时间:2021-07-01 10:21:17 帮助过:6人阅读

本文主要为大家分享JS发送json格式的POST请求方法,主要以代码的形式和大家分享,希望能帮助到大家。

<script type="text/javascript">

使用JS 发送JSON格式的POST请求

var us = new US();
var xhr = new XMLHttpRequest();
xhr.open("POST", "/searchguard/api/v1/auth/login", true);
xhr.setRequestHeader("Content-type", "application/json");
xhr.setRequestHeader("kbn-version", "5.3.0");
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
window.location.href = us.nextUrl;
}
}
};
xhr.send(JSON.stringify({
"username" : us.u,
"password" : us.p
}));
</script>

相关推荐:

php之curl get post请求用法实例分享

以上就是JS使用json格式的POST请求方法的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行