Posts by Shintaro Kisaragi • 68 points
2 posts
-
2
votes1
answer103
viewsA: How to access json Response fields in nodejs?
Query(example): [ { "idproduto": 1, "nome": "LANCHE1", "preco": 20, "imagem": null }, { "idproduto": 2, "nome": "LANCHE2", "preco": 20, "imagem": null } ] rows[0].nome //output: LANCHE1 rows[1].nome…
-
3
votes1
answer342
viewsQ: Date coming with date tomorrow instead of today
My date’s coming up with the wrong date, tomorrow’s coming up plus I want today’s date. For my application the date and time cannot be wrong. I’ve checked the date on the server and it’s correct:…