欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

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

程序员文章站 2022-03-25 12:41:26
...
本文主要为大家分享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请求方法的详细内容,更多请关注其它相关文章!