[resolved] How would you implement showing a success message after posting a form?
I have this use case:
I'm thinking about using
What do you think? Are there existing solutions that solve this problem?
- User navigate to
which displays a form to create a book/books/create - User fills the from and submits the form
- In case of a successful submit, the user gets redirected to
and a success message is shown at the top./books/:id
I'm thinking about using
sessionStorage or just simply redirect to /books/:id?success=true and then somehow omit the success query param.What do you think? Are there existing solutions that solve this problem?