Posts by Danilo Torquato • 51 points
5 posts
-
1
votes1
answer579
viewsQ: Why use Redux to request the API in React?
I started to see React well before learning how to use Redux and always requested in the API using a Fetch or Axios in the component itself. Today I already venture into the world of Redux and come…
-
0
votes3
answers705
viewsA: How to click on Listview
I took a look at your code and noticed an existing method that should do this function. In your code you have this method that serves to capture the Click events: lista.setOnItemClickListener(new…
-
-1
votes1
answer334
viewsA: IONIC - My project does not generate the www folder
depending on the version of Ionic the www folder is no longer needed, but if you need to, you can create this folder manually without any problem, it can be an empty folder even if it will work…
ionicanswered Danilo Torquato 51 -
1
votes1
answer703
viewsA: Nodejs - Problem sending a POST with object array
you are sending an array, but you are saving it as if it were a single object. recommend that you send an Array in this form { books:[ { "title": "A menina que roubava livros", "description": "Uma…
-
0
votes1
answer51
viewsA: Serivces on Android rebooting variables
it is normal to restart, every time the service is activated, it will create a new instance of Service with the default values of the class, if you want to make a counter with the old value, I…