如何在 Razorpay react-native 中禁用稍后付款选项
How to disable Pay Later payment option in Razorpay react-native
我在我的应用程序中使用 react-native-razorpay。
我想在Razorpay支付页面隐藏一些支付方式。
我可以隐藏或禁用 [=20=]网上银行 和 电子钱包 选项,但 稍后付款 选项不会禁用。
这是我使用的代码
var options = {
image: '',
currency: 'INR',
key: '***********',
amount: Amount,
name: 'MY APP',
prefill: {
email: Email,
contact: Number,
name: Name
},
theme: {color: 'red'},
method: {
netbanking: false,
card: true,
wallet: false,
upi: true,
paylater: false
},
}
RazorpayCheckout.open(options).then((data) => {})
如何在 react-native-razorpay
中隐藏或禁用 [=20=]稍后付款 支付选项
config: {
display: {
hide: [
{ method: 'paylater' },
{ method: 'emi' }
],
preferences: { show_default_blocks: true }
}
}
我在我的应用程序中使用 react-native-razorpay。 我想在Razorpay支付页面隐藏一些支付方式。
我可以隐藏或禁用 [=20=]网上银行 和 电子钱包 选项,但 稍后付款 选项不会禁用。
这是我使用的代码
var options = {
image: '',
currency: 'INR',
key: '***********',
amount: Amount,
name: 'MY APP',
prefill: {
email: Email,
contact: Number,
name: Name
},
theme: {color: 'red'},
method: {
netbanking: false,
card: true,
wallet: false,
upi: true,
paylater: false
},
}
RazorpayCheckout.open(options).then((data) => {})
如何在 react-native-razorpay
中隐藏或禁用 [=20=]稍后付款 支付选项config: {
display: {
hide: [
{ method: 'paylater' },
{ method: 'emi' }
],
preferences: { show_default_blocks: true }
}
}