Home > Net >  How to navigate to new page if submission is successful?
How to navigate to new page if submission is successful?

Time:04-23

I have a form that is submit with some data. I am able to console.log the data and know that form is submitted but I would like to navigate to different page once my form is submitted and submission condition met.

HandleSubmit condition:

 const handleSubmit = (event) => {
event.preventDefault();
if (Object.keys(errors).length === 0) {
 callback();
} else {
etErrorMessage("Please, submit required data");
setSubmitted(false);
 }
  };

<button onClick={handleSubmit}>Save</button>

CodePudding user response:

If you are using react router, you can use "useNavigate" (https://reactrouter.com/docs/en/v6/getting-started/overview)

If you are not using react router, and you want to change the url, you can use this in your callback.

window.location.href = "http://localhost:8000/test"

CodePudding user response:

If you are using react router, you can use the useHistory hook and then call history.push("/some_url") after your submit. Docs can be found here: https://v5.reactrouter.com/web/api/Hooks

CodePudding user response:

I actually got it, I feel so dumb. since I have a sperate custom hook file for handling my form events, I just have to create formSubmit to handle my navigation and pass into my custom hook.

  • Related