คำตอบที่ยอมรับได้ในสิ่งที่คุณทำได้คือใช้react
และreact-router
ตัวมันเองเพื่อให้คุณhistory
คัดค้านซึ่งคุณสามารถกำหนดขอบเขตในไฟล์แล้วส่งออก
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;
}
จากนั้นนำเข้าคอมโพเนนต์และต่อเชื่อมเพื่อเริ่มต้นตัวแปรประวัติ:
import { BrowserRouter } from 'react-router-dom';
import { GlobalHistory } from './history';
function render() {
ReactDOM.render(
<BrowserRouter>
<div>
<GlobalHistory />
//.....
</div>
</BrowserRouter>
document.getElementById('app'),
);
}
จากนั้นคุณสามารถนำเข้าในแอปของคุณได้เมื่อติดตั้งแล้ว:
import getHistory from './history';
export const goToPage = () => (dispatch) => {
dispatch({ type: GO_TO_SUCCESS_PAGE });
getHistory().push('/success');
};
ฉันยังทำและแพ็คเกจ npmที่ทำแบบนั้น