react项目—单击按钮返回上一页

// 如果使用hashHistory
import creatHistory from 'history/createHashHistory' 

// 如果使用createBrowserHistory
import creatHistory from 'history/createBrowserHistory' 

const history = creatHistory();

history.goBack();

下面的截图是打印history的结果:

 react项目—单击按钮返回上一页_第1张图片

相关API:https://reacttraining.com/react-router/web/api/history

你可能感兴趣的:(reactJS,react,返回上一页)