Posts by Lucas Carnevalli • 29 points
6 posts
-
1
votes1
answer44
viewsA: register new users using Ionic and parse
The best thing to do is to climb the Ionic in debug mode and you access by mobile, will be possible you see the logs in the console. ionic run --consolelogs --serverlogs In the pro backend calls…
-
-2
votes2
answers1011
viewsA: update method (sqlite) does not update database data
When you will pass the parameter is informing an array, but it is using " = ? " removes this "new String", getting: db.update("livro ", values, "_id = ? ", livro.getId());…
-
-1
votes2
answers148
viewsA: Console error warning when running Ionic app
In your application you are using the "webkitMovementX" function that is outdated, use movementX. This is just a warning, it is not an error. This function may have problems that in the newer…
ionicanswered Lucas Carnevalli 29 -
-2
votes3
answers315
viewsA: Syntaxerror: unterminated string literal JAVASCRIPT
Hello, try it this way: fnc_eglise_ajaxGet('ajax\/deletaPessoaVinculo.php?d=<?php echo eglise_dataDeDMAParaAMD($vinculo->DAT_INICI_VINCU); ?>&p=PV&a=1&pb=<?php echo…
-
1
votes2
answers52
viewsQ: How to use "position:absoluted" correctly?
good night. I am building an application with phonegap and I have the following problem. I have a div with a background image with "position:absoluted". I would like to create a component below this…
-
1
votes2
answers927
viewsA: Return reading in JSON
Dude, you use Jackson to parse this JSON, you create an object that represents JSON, it’ll make it easier. In case it will be an X object with a list of Car objects, and inside the Car object you…