时间:2021-07-01 10:21:17 帮助过:6人阅读
<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网其它相关文章!