“this.props.history.location.push” Código de respuesta

History.push con parámetros

import { useHistory } from "react-router-dom";

const FirstPage = props => {
    let history = useHistory();

    const someEventHandler = event => {
       history.push({
           pathname: '/secondpage',
           search: '?query=abc',
           state: { detail: 'some_value' }
       });
    };

};

export default FirstPage;

Precious Panda

React Router History Push Parameter

this.props.history.push({
  pathname: '/template',
  search: '?query=abc',
  state: { detail: response.data }
})
Dangerous Deer

this.props.history.location.push

props.history.push({  pathname: '/register', state: data_you_need_to_pass});
Ill Ibex

this.props.history.location.push

<Link to={{  pathname: "/register",  state: data_you_need_to_pass }}> Register</Link>
Ill Ibex

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código