Posts by Rodrigo Lopes • 46 points
5 posts
-
1
votes3
answers1339
viewsA: Angular 7: pass the service from one component to another per parameter
As you have previously passed the Service as import, you may need to start a variable with a new of that service. In Dad you didn’t need to start as new because it is in the constructor that already…
-
0
votes1
answer32
viewsA: How to Add Angular Library to an Ionic Application
The problem was solved by replacing the Browsermodule module with the Commonmodule, thus solving the problem that Ionic pointed to with double dependency of the Browsermodule module.
-
2
votes1
answer32
viewsQ: How to Add Angular Library to an Ionic Application
I have an angular 7 lib, which works normally when I import the library module into the main module of the Ionic application, the problem is that if I use the Ionic router to insert the "home"…
-
0
votes1
answer234
viewsA: How to change the date that comes from the HTML form as d-m-Y to the Y-m-d format with PHP?
First of all, I recommend a good read in the php manual http://php.net/manual/en/index.php . You will avoid a lot of headache by reading and learning some of the functions there :D <?php if…
phpanswered Rodrigo Lopes 46 -
0
votes1
answer36
viewsA: Sending a Java Socket message
Use comma friend, makes understanding easier. Anyway, why don’t you try using a Scanner to receive getInputStream from your socket? Ex: Scanner entrada = New Scanner(cliente.getInputStream());…