0

我正在尝试使用节点和快递设置条纹支付应用程序,按照此处的示例: 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() 处理的承诺。

我是新的承诺,不确定这段代码的语法应该是什么。我可以添加吗

promise1.catch((error) => {
  console.error(error);
});
4

1 回答 1

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
});
于 2020-07-26T17:33:11.973 回答