目前我使用条纹支付按钮作为向用户收费的一种方式。然而,这个过程是:
他们收到一封电子邮件,该电子邮件有一个支付按钮。按下按钮后,该按钮将启动一个带有条纹支付按钮的页面。按条纹支付按钮打开卡支付。
我希望能够直接从用户按下电子邮件的支付按钮到打开的卡支付页面,而不是他们必须按下另一个按钮。
我一直在使用https://stripe.com/docs/checkout。我认为直接调用 stripecheckout.open 可以解决问题,但是,我不确定如何使用 javascript 正确格式化此调用。
例如,当按下电子邮件支付按钮时,会生成这样的条带支付按钮
res.write('<script ');
res.write('src="https://checkout.stripe.com/v2/checkout.js" class="stripe-button"');
res.write('data-key="' + body[0].data_key + '"');
res.write('data-amount="' + body[0].data_amount +'"');
res.write('data-name="' + body[0].data_name + '"');
data_desc_string = body[0].data_description;
data_desc_short = data_desc_string.substring(7);
res.write('data-description="' + data_desc_short + '"');
res.write('data-currency="usd">');
res.write('</script>');
我不确定我应该如何仅为stripecheckout.open
.