Posts by Daniel Schmitz • 136 points
3 posts
-
0
votes1
answer162
viewsA: Maintain req.body parameters when changing course
You can pass the parameters as follows: res.redirect(`/nova_rota?nome=${nome}&data=${data}`); There are other ways, just read the redirect documentation
-
-1
votes3
answers318
viewsA: How do you get part of a String?
Break the string with .split(" ") using space as a separator, and then grab the last item from the :P list
javaanswered Daniel Schmitz 136 -
1
votes1
answer88
viewsA: Vue Js and Pokeapi
The main "reason" for using the Axios is that it is agnostic to the system. That is, if you are using javascript, you can use Axios be a Vue, Node, angular, React project, whatever. You learn Axios…