【发布时间】:2021-01-13 20:15:51
【问题描述】:
我一直在尝试将条带添加到我目前正在尝试获得 MVP 的应用程序中。每当我输入测试信用卡并单击发送时,我都会被发送到带有以下错误代码的屏幕。
Error: Unhandled Rejection (TypeError): Cannot read property 'id' of undefined
db.collection("users")
.doc(user?.uid)
.collection("orders")
.doc(paymentIntent.id)
.set({
basket: basket,
amount: paymentIntent.amount,
created: paymentIntent.created,
});
【问题讨论】:
-
看来
paymentIntent为空
标签: reactjs google-cloud-firestore stripe-payments