Posts by Saulo Souza • 26 points
4 posts
-
0
votes2
answers292
viewsA: How do I create a vertical spacing between Ivs in css?
in css put like this: div { margin-bottom: 10px; }
-
1
votes1
answer166
viewsA: how to increment a loop javascript object array?
I’m not on the computer var post = { test: 'test', option: [] }; And then: post.option[i] = questionOption;
javascriptanswered Saulo Souza 26 -
-1
votes1
answer33
viewsA: How to get a single database value through the Angularfirestore and show your data via Observable?
async searchAnimal() { this.animal$ = await this.animaisService.getAnimal(this.animalForm.value.IdChip); console.log(this.animal$); console.log('Setando formulario') …
-
-1
votes1
answer53
viewsA: Consultation of collections firebase
You have to make one for by receiving users, thus: firebase.firestore().collection('usuarios').get().then((docData) => { docData.docs.map((e, i, a) => { const collectionPublicacoes =…