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

2024-12-31 00:49:41
推荐回答(1个)
回答1:

$.ajax({
  url:"xxxxxx"
  type:"post",
  dataType:"json",
  data:"hello world",
  headers: {'Content-Type': 'application/json'},
  success: function (res) {
    if (res.status == 1) {
      window.location.reload();
    } else {
      alert(res.message);
    }
  }
})

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