Get Form data in a State and from there into the URLSearchParams() #779
Answered
by
onemanwenttomow
gregorsart
asked this question in
Web
-
We have problems to get our State object Help very welcome ...
|
Beta Was this translation helpful? Give feedback.
Answered by
onemanwenttomow
Nov 17, 2023
Replies: 1 comment 2 replies
-
Hi Gregor, can you send a PR to the current state of the App? Thanks in advance :) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the link to the PR.
So it seems like the ultimate goal is to create a string (url) like the following
/quiz-results?barking=2&energy=2&trainability=4&good_with_children=2&good_with_other_dogs=2&protectiveness=2&shedding=2
To get there you were taking an object structured like so
And converting it into a string via the URLSearchParams
e.g.
On possible solution to solve this challenge with a multi step for would be to start with an empty ob…