Posts by Wesley Feitosa • 25 points
4 posts
-
0
votes2
answers434
viewsA: How to recover documents from a Firestore(Firebase) collection in the right way?
I got what I wanted with Eduardo Vargas' help, and my code went like this: this.db.collection('contatos').doc(key).collection('imagens') .snapshotChanges() .subscribe(response=> {…
-
0
votes2
answers434
viewsQ: How to recover documents from a Firestore(Firebase) collection in the right way?
I want to recover all documents from an internal collection of a document in the Firestore for an array, in case this collection has 2 documents, however after running the code below the…
-
0
votes1
answer251
viewsQ: How to filter JSON objects through the fields of an array?
How can I search for JSON objects by the tags assigned to them? Type I want to get all objects that have the "algodao" tag. I’m creating the model as it is down there for now, but I don’t know if…
jsonasked Wesley Feitosa 25 -
2
votes2
answers444
viewsQ: I cannot import a feature module into the main module. Angular
I have a functionality module called CategoriasModule and when I put the class name in the main module’s Imports this error appears: Uncaught Error: Unexpected value 'Undefined' Imported by the…