我正在尝试将表单文档存储到我的Firebase集合(云Firebase)中。我很担心棱角分明的服务:
crearNorma( $normas) {
this.normasCollection = this.db.collection('norma');
this.$normas = this.normasCollection.valueChanges().pipe(map(
(resp: NormaModel[]) => resp.map(
({nombre, deporte, minValor, criterio, coeficiente}) => ({nombre, deporte, minValor, criterio, coeficiente})
)
))this.normasCollection.add($normas);
}
Firebase返回错误问题,因为您需要和对象以及他发送和数组。 我如何在数组中转换?我尝试过管道和地图。
该服务仅适用于此示例,但这只是文字示例。
const newNorma = {
nombre: 'albero',
deporte: 'btt',
criterio: 'desnivel',
minValor: 23,
coeficiente: 2.3,
};
this.normasCollection.add(norma);