如何 change/remove 使用 nodejs 在条带中启用测试模式和实时模式?

How to change/remove the test mode and enable live mode in stripe using nodejs?

下面是我用来收款的条纹表格的代码。但是在加载表单时,它会在右上角显示测试模式。我无法弄清楚如何将其更改为实时模式 now.I 在条纹仪表板上也看不到任何选项。

<form id="payment-form" action="/processPayment/{{stripe}}/{{priceIDtoDisplay}}" method="POST" >
      <script
         src="https://checkout.stripe.com/checkout.js"
         class="stripe-button"
         data-key="{{key}}"
         data-amount="{{priceID}}"
         data-currency="usd"
         data-name="{{planName}}"
         data-description="${{priceIDtoDisplay}}/mo"
         data-locale="auto" >
       </script>
   </form>

下图为stripe结账时的支付页面附件图:

您激活 Stripe 帐户了吗?如果是这样,请进入 API Keys。您应该能够切换测试模式 on/off。如果您不想看到“测试模式”横幅,请确保使用实时模式键。