如何推动历史在反应路由器v4?
browserHistory.push
this.props.addProduct(props)
// actions/index.jsexport function addProduct(props) { return dispatch => axios.post(`${ROOT_URL}/cart`, props, config) .then(response => { dispatch({ type: types.AUTH_USER }); localStorage.setItem('token', response.data.token); browserHistory.push('/cart'); // no longer in React Router V4 });}
撒科打诨