질문 - Firebase에서 가져온 배열의 값을 추가하고 라벨에 표시
2154 단어 htmltypescriptangularfirebase
async getGastos() {
const uid = await this.auth.getUid();
const ruta = 'Usuarios/' + uid + '/Gastos';
this.firebaseService.getCollection<Gasto>(ruta).subscribe(res => {
this.gastos = res;
// this.gastos.forEach(gasto => {
// gasto.monto_gasto;
// });
});
this.setTransc()
}
//"expenses"컬렉션, "expense_amount"열에서 데이터를 가져오고 이 데이터를 "setTransc"함수에 추가하는 함수
async getIngresos() {
const uid = await this.auth.getUid();
const ruta = 'Usuarios/' + uid + '/Ingresos';
this.firebaseService.getCollection<Ingreso>(ruta).subscribe(res => {
this.ingresos = res;
// this.ingresos.forEach(ingreso => {
// ingreso.monto_ingreso
// });
this.setTransc()
});
}
//"income"컬렉션, "expense_amount"열에서 데이터를 가져오고 이 데이터를 "setTransc"함수에 추가하는 함수
setTransc() {
let sumaGastos = 0;
this.gastos.forEach(gasto => {
sumaGastos += gasto.monto_gasto
console.log("ggg", sumaGastos);
});
let sumaIngresos = 0;
this.ingresos.forEach((ingreso, i) => {
sumaIngresos += ingreso.monto_ingreso
console.log("iii", sumaIngresos);
});
}
async todo(){
await this.getGastos();
await this.getIngresos();
}
"setTransc()"함수가 배열의 값을 합한 다음 "todo()"함수는 요소가 표시되기 전에 약속을 반환하므로 대기합니다.
다음 보기에서 직접 표시하기 위해 백그라운드에서 수행하는 방법을 모르기 때문에 작동할 값에 대한 버튼을 눌러야 한다는 점에 유의해야 합니다.
사전에 감사 드리며 나쁜 영어로 죄송합니다.
Reference
이 문제에 관하여(질문 - Firebase에서 가져온 배열의 값을 추가하고 라벨에 표시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hsminchala/question-add-values-from-an-array-brought-from-firebase-and-display-them-in-a-label-4jbf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)