📅  最后修改于: 2023-12-03 14:59:08.220000             🧑  作者: Mango
这个错误通常出现在使用Firebase实时数据库时,当你的程序试图使用未定义的属性添加数据时,会发生这个错误。这个错误告诉你,在你的Firebase数据库中没有对应的属性,所以你的程序不知道该怎么添加数据。
ref.child(`orders/${orderId}/info`)
.update({
name: customerName,
address: customerAddress,
phone: customerPhone,
other_phone: customerPhone2,
note: orderNote
})
.then(() => {
console.log('Order updated successfully');
})
.catch((error) => {
console.error('Error updating order:', error);
});
注:代码中的 customerPhone2
为未定义属性。