**关闭。**此题需要debugging details。目前不接受答复。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
4天前关闭。
Improve this question
const res = await axios.post(
"http://example.com/api/addStripePayment",
{
cartItems: data,
},
{
headers: {
auth: user.userToken,
},
withCredentials: true,
}
);
无法从Axios获得响应,我是否正确发送了数据,或者这里还有什么问题
1条答案
按热度按时间y1aodyip1#
您不应该发布任何潜在的公共IP地址。Stripe API可能也不会响应不安全的
http
请求。您应该打开浏览器的DevTools,查看数据是否正在发布,以及返回的响应(如果有的话)。触发数据呼叫时,请查看“Network(网络)”选项卡。
在JavaScript控制台中查看结果的简单示例:
您的代码没有进行
.then()
调用或引用res
变量。