ajax post请求怎么传参_使用jQuery的ajax方法向服务器发出get和post请求的方法
时间: 2024-05-07 10:22:32 浏览: 83
使用jQuery的ajax方法向服务器发出get和post请求的方法如下:
1. 发送GET请求:
```
$.ajax({
url: "your_url",
type: "GET",
data: {param1: "value1", param2: "value2"},
success: function(response){
// 成功时的回调函数
},
error: function(xhr, status, error){
// 出错时的回调函数
}
});
```
其中,url为请求的地址,type为请求的类型,data为请求的参数,success为请求成功时的回调函数,error为请求失败时的回调函数。
2. 发送POST请求:
```
$.ajax({
url: "your_url",
type: "POST",
data: JSON.stringify({param1: "value1", param2: "value2"}),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(response){
// 成功时的回调函数
},
error: function(xhr, status, error){
// 出错时的回调函数
}
});
```
其中,url、type、success和error参数的含义同上,data参数为请求的参数,contentType为请求的数据类型,dataType为响应的数据类型。在发送POST请求时,需要将请求的数据以JSON格式进行字符串化。
阅读全文