gpt4 book ai didi

axios - 如何将 auth header 添加到 axios hooks 请求?

转载 作者:行者123 更新时间:2023-12-04 01:37:11 26 4
gpt4 key购买 nike

我正在使用 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

关于axios - 如何将 auth header 添加到 axios hooks 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59093367/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com