我一直在尝试将条纹添加到当前我想获得其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,
});
答案 0 :(得分:1)
这里的错误很清楚。看来您的paymentIntent
是undefined
。