如何将身份验证标头添加到 axios 钩子请求中?



我正在使用 React Hooks,我想使用 axios hooks 包将图像发送到 Cloudinary。

const [ 
{ data: putData, loading: putLoading, error: putError },
executePut
] = useAxios(
{
url: 'https://api.myjson.com/bins/820fc',
method: 'PUT'
},
{ manual: true }
)

文档没有说标题?

我相信你正在寻找这个:

const [ 
{ data: putData, loading: putLoading, error: putError },
executePut
] = useAxios(
{
url: 'https://api.myjson.com/bins/820fc',
method: 'PUT',
headers: {
'Content-Type': 'application/json'
}
},
{ manual: true }
)

文档:https://github.com/axios/axios#request-config

相关内容

  • 没有找到相关文章

最新更新