发布网友 发布时间:2022-04-22 20:02
共2个回答
懂视网 时间:2022-04-23 00:24
这次给大家带来怎样使用JSON格式发送POST请求,使用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>
相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!
推荐阅读:
JS面试常见五个知识点
Vue做出Observer有哪些方法
热心网友 时间:2022-04-22 21:32
jQuery就可以了
//假定向一个服务器发送用户名和密码,成功后返回一个JSON对象