用jquery的ajax中POST请求设置Content-Type": 'x-www-form-urlencoded'
时间: 2024-05-01 16:17:00 浏览: 199
详谈java编码互转(application/x-www-form-urlencoded)
可以使用jQuery的$.ajax()方法,通过设置contentType属性来设置Content-Type为'application/x-www-form-urlencoded',如下所示:
```
$.ajax({
url: 'your-url',
type: 'POST',
data: {key1: value1, key2: value2},
contentType: 'application/x-www-form-urlencoded',
success: function(response) {
// 处理成功响应
},
error: function(xhr, status, error) {
// 处理错误响应
}
});
```
其中,data属性用于指定要发送到服务器的数据,contentType属性用于设置请求头部中的Content-Type字段。默认情况下,$.ajax()方法会将Content-Type设置为'application/x-www-form-urlencoded; charset=UTF-8',但是可以通过设置contentType属性来覆盖默认值。
阅读全文