ajax请求设置request header内的值
时间: 2023-12-16 20:05:36 浏览: 77
如何在ajax请求中设置特殊的RequestHeader
可以使用XMLHttpRequest对象的setRequestHeader()方法来设置请求头的值。例如,设置请求头的Content-Type为application/json:
```
var xhr = new XMLHttpRequest();
xhr.open('POST', '/api', true);
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.send(JSON.stringify(data));
```
请注意,请求头的名称和值必须是字符串类型。
阅读全文