gpt4 book ai didi

javascript - 尝试连接到 Stripe 时我的脚本不会执行

转载 作者:行者123 更新时间:2023-12-02 21:32:08 25 4
gpt4 key购买 nike

我会先说我不太擅长 Javascript,但我了解基础知识,但我也刚刚开始了解 Stripe。我正在使用安装了 Wordpress 的本地环境进行测试,并遵循此 Stripe documentation 。我已经安装了 Node.js 并在命令行中使用了 npm install stripe这会在我的 MAMP/htdocs/iga 文件夹中添加 node_modules 文件夹(iga 是网站的名称)。然后我将该脚本添加到我的functions.js 文件中。

问题是,当我运行包含脚本的页面时,在检查控制台时,控制台中没有任何显示。它应该给我一条消息来说明成功或失败,但我什么也没得到。我通过放置console.log('Hello');来检查functions.js文件是否正常工作。在 strip 脚本之后,但该部分确实执行,并且我在控制台中看到它。

我不知道这是脚本、npm 安装的问题还是其他问题。

Javascript代码:

async () => {
try {
const stripe = require('stripe')('[test_key]');
const paymentIntent = await stripe.paymentIntents.create({
amount: 1477, // $14.77, an easily identifiable amount
currency: 'usd',
});
console.log('Worked! ', paymentIntent.id);
} catch(err) {
console.log('Error! ', err.message);
}
};

编辑:当我进行 npm 安装时,我也收到一些错误。我尝试将其安装在不同的地方,但没有改变。

编辑 2:这是我在安装 npm stripe enter image description here 时遇到的错误的图像

最佳答案

如果您在安装stripe-node时遇到错误,那么您应该在任何人可以帮助您之前编辑问题中的错误。

也就是说,您的代码片段创建了一个调用 Stripe API 的匿名函数,但实际上并没有执行它。

您可以通过使用 Immediately Invoked Function Expression 立即调用它来解决此问题:

(async () => {
// snip
})();

或者给匿名函数一个名称,然后调用它,IMO 更干净:

async function createPaymentIntent() {
// snip
}

createPaymentIntent();

关于javascript - 尝试连接到 Stripe 时我的脚本不会执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60595716/

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