Mô phỏng để trả lời được chấp nhận những gì bạn có thể làm là sử dụng react
và react-router
chính nó để cung cấp cho bạnhistory
đối tượng mà bạn có thể phân bổ trong một tệp và sau đó xuất.
history.js
import React from 'react';
import { withRouter } from 'react-router';
// variable which will point to react-router history
let globalHistory = null;
// component which we will mount on top of the app
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 react-router history
export default function getHistory() {
return globalHistory;
}
Sau đó, bạn nhập Thành phần và gắn kết để khởi tạo biến lịch sử:
import { BrowserRouter } from 'react-router-dom';
import { GlobalHistory } from './history';
function render() {
ReactDOM.render(
<BrowserRouter>
<div>
<GlobalHistory />
//.....
</div>
</BrowserRouter>
document.getElementById('app'),
);
}
Và sau đó, bạn chỉ có thể nhập vào ứng dụng của mình khi nó đã được gắn kết:
import getHistory from './history';
export const goToPage = () => (dispatch) => {
dispatch({ type: GO_TO_SUCCESS_PAGE });
getHistory().push('/success'); // at this point component probably has been mounted and we can safely get `history`
};
Tôi thậm chí đã thực hiện và gói npm làm được điều đó.