未处理的承诺拒绝条带支付意图示例
Posted
技术标签:
【中文标题】未处理的承诺拒绝条带支付意图示例【英文标题】:Unhandled promise rejection stripe paymentIntent example 【发布时间】:2020-11-16 01:51:43 【问题描述】:我正在尝试使用 node 和 express 设置条带支付应用程序,如下所示: https://stripe.com/docs/payments/accept-a-payment#web
我按照指示在我的服务器端应用程序代码中创建了路由,并将客户端代码插入到我的 html 文件中。我正在尝试创建没有模板引擎的应用程序,只需 html/css/javascript/node。
var response = fetch('/secret').then(function(response)
return response.json();
).then(function(responseJson)
var clientSecret = responseJson.client_secret;
// Call stripe.confirmCardPayment() with the client secret.
);
我收到以下错误: 未处理的承诺拒绝。此错误源于在没有 catch 块的情况下抛出异步函数内部,或拒绝未使用 .catch() 处理的承诺。
我是 Promise 的新手,不确定这段代码的语法应该是什么。可以加吗
promise1.catch((error) =>
console.error(error);
);
【问题讨论】:
是的,您应该添加一个.catch(…)
子句,但promise1
是什么?
【参考方案1】:
是的,在最后添加一个 catch 方法会捕获错误(rejected Promise)。你的建议可行。
var response = fetch('/secret').then(function(response)
return response.json();
).then(function(responseJson)
var clientSecret = responseJson.client_secret;
// Call stripe.confirmCardPayment() with the client secret.
).catch(function(err)
// Handle error
);
【讨论】:
以上是关于未处理的承诺拒绝条带支付意图示例的主要内容,如果未能解决你的问题,请参考以下文章