gpt4 book ai didi

javascript - axios({method : "post"}) and axios. post()的区别

转载 作者:行者123 更新时间:2023-12-04 03:52:05 25 4
gpt4 key购买 nike

我正在使用 Shopify Storefront API 和 Axios 在本地开发电子商店。

Shopify 在我使用 axios() 时给我回复,但它返回 403 Forbidden当我对 axios.post() 做同样的事情时.

这两者有什么区别?

axios.post(
SHOPIFY_DOMAIN,
{
headers: {
"Content-Type": "application/graphql",
"X-Shopify-Storefront-Access-Token": SHOPIFY_TOKEN
},
data: `{ shop }`
})

axios({
method: "post",
url: SHOPIFY_DOMAIN,
headers: {
"Content-Type": "application/graphql",
"X-Shopify-Storefront-Access-Token": SHOPIFY_TOKEN
},
data: `{ shop }`
})

最佳答案

axios.post的声明是 axios.post(url[, data[, config]]) .正确的使用方法是:

axios.post(
SHOPIFY_DOMAIN,
`{ shop }`,
{
headers: {
"Content-Type": "application/graphql",
"X-Shopify-Storefront-Access-Token": SHOPIFY_TOKEN
}
}
);

另见: axios API

关于javascript - axios({method : "post"}) and axios. post()的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49577677/

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