当我尝试将对象推送到Firebase时,它会默默地失败,而不会提醒我任何错误,并且我的代码就此停止。它似乎无法完成。奇怪的是,它在浏览器上运行良好,但在ios模拟器或设备上无法完成。我很困惑,这应该很简单。
firebase.database().ref(`payments/${this.currentCustomer.uid}/${id}`)
.push({reservation: payment.reservation})
我通过添加回调来尝试控制台日志记录错误,但是它没有记录任何内容
currentReservation={
time: null,
type: '',
day: 'Monday',
date: null,
month: null,
year:'2019',
location: {},
note:''
}
firebase.database().ref(`payments/${this.currentCustomer.uid}/${id}`)
.push({reservation: payment.reservation})
currentReservation从用户那里获取值。在此之后,我尝试将对象推入Firebase,但不是。 这适用于浏览器,但不适用于ios设备或模拟器。