axios.post() 方法 设置请求头

in 前端 with 0 comment

axios.post('/your-url', data, {
  headers: {
    'Content-Type': 'application/json',
    // other headers here...
  }
});

在这个例子中,我们设置了 Content-Type 头,指定了请求的数据格式为 JSON。您可以添加其他的头信息,只需要在 headers 对象中添加新的键值对即可。

Comments are closed.