action中定义了一个请求方法:export function add(body) { return dispatch => { api.add(body) .then(res => { if (res.data === 200) { // browserHistory.push('/index') //this.props.history.push('/index') } dispatch({ type: 'ADD_LIST', payload: res.data }); }); } } 把这个add方法引入页面中,在页面的点击事件直接调用: handleSubmit = () => { this.props.add() }
在add方法中, 接口返回200 后,如何让路由跳转到 index 页面, if里面的2种写法都会报错, 达不到效果, 请问怎么操作,能达到效果呢? 谢谢大家!
Cats萌萌