Kabul edilen cevaba Similiary ne yapabileceğini kullanımıdır react
ve react-router
kendisi sağlamak için history
hangi nesneden sonra bir dosyada kapsamı ve ihracat yapabilirsiniz.
history.js
import React from 'react';
import { withRouter } from 'react-router';
let globalHistory = null;
class Spy extends React.Component {
constructor(props) {
super(props)
globalHistory = props.history;
}
componentDidUpdate() {
globalHistory = this.props.history;
}
render(){
return null;
}
}
export const GlobalHistory = withRouter(Spy);
export default function getHistory() {
return globalHistory;
}
Daha sonra Bileşeni içe aktarır ve geçmiş değişkenini başlatmak için bağlarsınız:
import { BrowserRouter } from 'react-router-dom';
import { GlobalHistory } from './history';
function render() {
ReactDOM.render(
<BrowserRouter>
<div>
<GlobalHistory />
//.....
</div>
</BrowserRouter>
document.getElementById('app'),
);
}
Ve daha sonra uygulamanıza eklendiğinde içe aktarabilirsiniz:
import getHistory from './history';
export const goToPage = () => (dispatch) => {
dispatch({ type: GO_TO_SUCCESS_PAGE });
getHistory().push('/success');
};
Hatta bunu yapan npm paketi bile yaptım .