为了账号安全,请及时绑定邮箱和手机立即绑定

请问jquery发送ajax请求,参数怎么放到http请求的body里面?

请问jquery发送ajax请求,参数怎么放到http请求的body里面?

沧海一幻觉 2019-07-09 05:04:14
请问jquery发送ajax请求,参数怎么放到http请求的body里面?
查看完整描述

3 回答

?
qq_花开花谢_0

TA贡献1835条经验 获得超7个赞


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

$.ajax({  

    url:"xxxxxx",

    type:"post",  

    dataType:"json",  

    data:"hello world",  

    headers: {'Content-Type': 'application/json'},  

    success: function (ret) {    

        if (ret.status == 1) {      

            window.location.reload();    

        } else {      

            alert(ret.message);    

        }  

    }

})    

使用post请求,这里的data里的参数就是在body形式传过去。




查看完整回答
反对 回复 2019-07-10
?
有只小跳蛙

TA贡献1824条经验 获得超8个赞

1

2

3

4

5

6

7

8

public boolean isAjaxRequest(HttpServletRequest request){  

    String header = request.getHeader("X-Requested-With");

    if ("XMLHttpRequest".equals(header)) {

        return true;

    } else {

        return false;

    }

}



查看完整回答
反对 回复 2019-07-10
?
心有法竹

TA贡献1866条经验 获得超5个赞


普通情况下没法判断不过如果使用jquery做ajax 会自动在请求的header里面加上一个 x-request-with 可以通过这个判断。望采纳! <html><!DOCTYPE html> <html> <head> <script> function loadXMLDoc() { var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("myDiv").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","/try/ajax/demo_get.php",true); xmlhttp.send(); } </script> </head> <body> <h2>AJAX</h2> <button type="button" onclick="loadXMLDoc()">Request data</button> <div id="myDiv"></div> </body> </html>



查看完整回答
反对 回复 2019-07-10
  • 3 回答
  • 0 关注
  • 479 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信