在dva
中使用dva-router
的routerRedux
来跳转路由,如下:
this.props.dispatch(routerRedux.push({
pathname: 'url'
}));
如果要传递参数:
this.props.dispatch(routerRedux.push({
pathname: 'url',
query: {id: id}
}));
在model
中获取参数:
const params = location.query;
系不系很简单呢