Posts by user9546412 • 46 points
6 posts
-
0
votes2
answers58
viewsA: Problem using counter variable within Xmlhttp/AJAX request
From what vi can be a variable scope problem tries to return the variable "test" within the function "onreadystatechange", instead of outside it.
-
0
votes1
answer63
viewsA: How do I revalidate an input whenever a number is changed?
use the "change event": document.getElementById("valordigitado").addEventListener('change',function(event){ //código });
-
-2
votes3
answers671
viewsA: Consume an API that requires authentication with Laravel
Of course, since you pass the authentication keys during the request to the API, the advantage of using the Web Services API is that you can merge several different technologies.
-
-2
votes1
answer101
viewsA: Problem with bodyParser - Does not take req.body even with bodyparser installed and configured
Good evening Thiago, congratulations for the initiative in the world Node.js,here’s a tip oara your career as DEV always put the middlewares that receive the data,before the routes: //BodyParser…
-
0
votes1
answer320
viewsA: Difference between Formdata and form
Actually there is no difference,the tag form sends your data in form-data format ex: "name=username=16" And the new instance of the "Formdata()" object takes the data you add through the "append"…
-
0
votes1
answer38
viewsA: How to Have Simultaneous Sessions?
Try to put the application login inside a "middleware" (a function that is executed at each request on your server), because maybe what is logging in is your entire application and not only the…