代码正在工作
但是在成功回调中不起作用
检查句柄成功
<TouchableOpacity
style={styles.item}
onPress={() => {
RazorpayCheckout.open({
...
theme: { color: "#f7b500" }
})
.then(data => {
***// handle success***
console.log(`Success: ${data.razorpay_payment_id}`);
console.log(reference)
**reference.navigation.navigate("ThankyouScreen", {
AvailablePoints: creditScorePoints - item.cash
});**
})
.catch(error => {
...
});
}}
>
答案 0 :(得分:0)
什么是参考?如果是this.props,则确保它是全局定义的。 尝试使用以下方式更改代码:
//on top of class
var reference = null;
//In componentDidMount
reference = this.props;