在 Stripe Checkout 中隐藏电子邮件
Hide email in Stripe Checkout
如何在 Stripe Paymentcheckout.js 中禁用或隐藏电子邮件
onStripeUpdate(e) {
this.stripehandler.open({
name: "",
description: "",
panelLabel: "Pay {{amount}}",
allowRememberMe: false,
email: "", //--->how to hide this email?
});
e.preventDefault();
}
无法完全禁用电子邮件字段。您可以为 email
configuration option 传递值,但它必须是有效的电子邮件地址。如果它是一个有效地址,该字段将被替换为具有您提供的值的静态标签。
如果您没有提供 email
选项,或者您提供了无效值(例如示例代码中的空字符串),则电子邮件字段仍会显示。
如何在 Stripe Paymentcheckout.js 中禁用或隐藏电子邮件
onStripeUpdate(e) {
this.stripehandler.open({
name: "",
description: "",
panelLabel: "Pay {{amount}}",
allowRememberMe: false,
email: "", //--->how to hide this email?
});
e.preventDefault();
}
无法完全禁用电子邮件字段。您可以为 email
configuration option 传递值,但它必须是有效的电子邮件地址。如果它是一个有效地址,该字段将被替换为具有您提供的值的静态标签。
如果您没有提供 email
选项,或者您提供了无效值(例如示例代码中的空字符串),则电子邮件字段仍会显示。