Posts by Teiji Watanabe • 68 points
6 posts
-
1
votes2
answers88
viewsA: Difficulty Deleting Cases in Javascript
In the error it is pointed out that "Ong is not defined" (the variable Ong is not defined). Note that in your code you try to compare incident.ong_id with ong.id, but at no time do you obtain and/or…
-
1
votes1
answer93
viewsA: Error deleting a BD widget from a column
For any change and/or deletion of data in a database, it is necessary to have the line ID you refer to. Only the title is not accepted because theoretically there can be other titles (read strings)…
-
3
votes3
answers97
viewsA: Does Hoisting occur with the variable within the function or any other block command?
I would say that occurred Hoisting in code with var, since the variable was "raised" to the function scope. When declared with var, the variables either have global scope or the scope of the…
javascriptanswered Teiji Watanabe 68 -
0
votes1
answer326
viewsA: Live Reload not working at the Expo
As embarrassing and idiotic as this is, I found the solution. Was in the mode of production, so there was no live or hot Reload.
-
0
votes1
answer326
viewsQ: Live Reload not working at the Expo
When emulating an app made with expo on Genymotion, the live Reload do Expo does not work, the options menu is not even open (either using the action of shaking the smartphone or pressing the button…
-
0
votes1
answer1588
viewsQ: How to go back to the previous page with physical smartphone button - Ionic
How do I allow the physical button come back of the mobile carries out a certain function in the Ionic 3? (In this case, a function that makes the application open the home page)…