路由传参

例:

传:
const isYes=true;

this.props.dispatch(
routerRedux.push({
pathname: 'XXXX',isYes
})
);

接:
this.props.location.isYes

你可能感兴趣的:(路由传参)