如何使用 Axios POST 请求发送标头
要发送 Axios POST 请求 ,您需要使用 headers
选项和 axios.post()
,第一个参数是 URL,第二个参数是请求正文,第三个参数是 options
。例如,下面是您如何设置 Content-Type
HTTP POST 请求的标头。
const res = await axios.post('https://httpbin.org/post', { hello: 'world' }, {
headers: {
// 'application/json' is the modern content-type for JSON, but some
// older servers may use 'text/json'.
// See: http://bit.ly/text-json
'content-type': 'text/json'
}
});
res.data.headers['Content-Type']; // text/json
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
上一篇: 如何在 Vue 中创建自定义滚动事件
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论