“Pasar datos en el historial del enrutador React, Push” Código de respuesta

Pasar datos en el historial del enrutador React, Push

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

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

Pasar datos en el historial del enrutador React, Push

this.props.location.state.detail
Mystic Dev

this.props.history.location.push

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

Respuestas similares a “Pasar datos en el historial del enrutador React, Push”

Preguntas similares a “Pasar datos en el historial del enrutador React, Push”

Más respuestas relacionadas con “Pasar datos en el historial del enrutador React, Push” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código