Posts by Cleyton Silva • 85 points
4 posts
-
2
votes4
answers1120
viewsQ: Error Deserialize Json in C#Template
Friends, I am getting error to make the deserialize of the following JSON: { "Comanda": [ { "status": "Produzido (Codigo 3)", "estabelecimento_id": 18, "cliente_nome": "Marcos Manfrin",…
-
0
votes2
answers87
viewsA: Javascript - IF running before time
I managed to solve! I used a setTimeout to run if shortly afterwards, giving you time to run the code further above. Solution: setTimeout(function() { if(aux == 0) { console.log("não encontrado");…
-
4
votes2
answers87
viewsQ: Javascript - IF running before time
Friends, could you explain to me and if possible, give a solution to the following problem? Man if where it is written: if(aux == 0) { console.log("não encontrado"); } It is running before check in…
-
2
votes1
answer54
viewsQ: Xmlhttprequest - Blank Answer
I have a file on the server that, if you find the login and password informed, returns 1 or 0 if nothing is found. However, I am unable to receive this information using XMLHttpRequest. In PHP, I…