Posts by Ricardo Gusi • 23 points
4 posts
-
0
votes1
answer38
viewsA: POST method with 'res' returning value, but playing null on 'date'
The problem was the content type that was wrong, it had to be 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' To set up right follow the link steps:…
-
1
votes1
answer38
viewsQ: POST method with 'res' returning value, but playing null on 'date'
I am trying to make a POST request in an API created in Springboot and when running the React application I get the date to have the desired value. But when will I pull the res.data it returns the…
-
-3
votes1
answer35
viewsQ: How can I reuse a Handlechange?
I have this code here which changes the box color according to the range input, but instead of 3 handlechange would you like to do just one, how do I do that? So far my code is like this: let…
-
0
votes0
answers36
viewsQ: How do I dynamically delete a Row with Flask?
Guys I have this code in HTML {% for row in rows %} <div class="card border-success mb-3" style="max-width: 18rem;"> <div class="card-header">{{ row['title'] }}</div> <div…