Posts by Tomaz Junior • 21 points
4 posts
-
0
votes2
answers295
viewsA: Ionic 3 - Error generating build --Prod
try to give an "npm install [email protected] --save" or delete the node_modules folder and give an "npm install"
-
0
votes2
answers604
viewsA: How does firebase work for sending notifications?
You will, on the server side (in your case in PHP), after some event (for example, at the end of your server save method), call the firebase library to send a push message to a user through a unique…
-
0
votes2
answers384
viewsA: Api that receives an Item Array
You could create a class that represents the data to be received by the method, so your code becomes more readable. The data would be sent on the request body. Class: public class…
-
2
votes2
answers11462
viewsA: Pass an object as a parameter to another Component using Angular 2?
To access the parameter in the target Component constructor(private route: ActivatedRoute) { } ngOnInit() { // se possivel, capture o parametro let questoesParam = this.route .queryParamMap…
angularanswered Tomaz Junior 21