在我的角度应用程序中,我无法将员工表格值存储到Firebase DB中。尽管这些值已保存到Cloud Firestore中Firebase DB中的集合中,但我希望将数据保存在Realtime数据库中。我该怎么做.. 这是employee.component.ts onSubmit
onSubmit(form: NgForm) {
let data = Object.assign({}, form.value);
delete data.id;
if (form.value.id == null)
this.firestore.collection('employee').add(data);
else
this.firestore.doc('employee/' + form.value.id).update(data);
this.resetForm(form);
this.toastr.success('Submitted', 'Register done!');
}