Posts by Murilo de Jesus • 49 points
5 posts
-
0
votes0
answers15
viewsQ: How do I return values in a socket?
I am receiving data from a C client, but when I make the necessary changes, the returned value is not printed. Only when I do a console.log. However, I would like the return to occur after c.write..…
-
0
votes1
answer256
viewsQ: Error when registering user in Django
When I wish to register a new user in Django, I receive the following warning: UNIQUE constraint failed: polls_usuario.matriculaUsuario What might be going on? py views. def registrar(request): if…
djangoasked Murilo de Jesus 49 -
1
votes0
answers46
viewsQ: How to put the menu button on the left in the mobile view?
I’m editing a project header and would like to put the header button on the left in the mobile view, but I can’t. What should I do? <nav class="[ navbar navbar-fixed-top ][ navbar-bootsnipp…
-
0
votes0
answers16
viewsQ: Questions about javascript in Rails
I would like to know a few points about Rails: When I’m in a populated post view and decide to quit it, how to issue an alert warning that I might lose these changes? It is possible to display a…
-
3
votes1
answer834
viewsQ: How to select all elements of the same id in Javascript in Django
I have a table in Django where all the answers of a test are stored, but when I select them to compare with the answer provided by the user, all the answers are the same as the first question. I…