Rumah > Artikel > hujung hadapan web > JS使用json格式的POST请求方法
本文主要为大家分享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>
相关推荐:
Atas ialah kandungan terperinci JS使用json格式的POST请求方法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!