NodeJS 无法从axios获取响应[已关闭]

z3yyvxxp  于 2023-05-28  发布在  Node.js
关注(0)|答案(1)|浏览(226)

**关闭。**此题需要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获得响应,我是否正确发送了数据,或者这里还有什么问题

y1aodyip

y1aodyip1#

您不应该发布任何潜在的公共IP地址。Stripe API可能也不会响应不安全的http请求。
您应该打开浏览器的DevTools,查看数据是否正在发布,以及返回的响应(如果有的话)。触发数据呼叫时,请查看“Network(网络)”选项卡。
在JavaScript控制台中查看结果的简单示例:

axios.post("https://example.com/api/login", {
  email: email,
  password: password
})
.then((response) => {
  console.log(response);
});

您的代码没有进行.then()调用或引用res变量。

相关问题