ajax设置content-type
时间: 2023-10-13 12:59:35 浏览: 135
set-content-type:设置给定请求和响应对象的 Content-Type 标头
5星 · 资源好评率100%
在使用 Ajax 进行请求时,可以通过设置 `Content-Type` 头部字段来指定请求体的数据类型。以下是一些常见的设置 `Content-Type` 的方式:
1. JSON 数据类型:
```javascript
xhr.setRequestHeader('Content-Type', 'application/json');
```
2. 表单数据类型:
```javascript
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
```
3. 文件上传类型:
```javascript
xhr.setRequestHeader('Content-Type', 'multipart/form-data');
```
请根据你的具体需求选择合适的 `Content-Type` 类型。
阅读全文