例:
传:
const isYes=true;
this.props.dispatch(
routerRedux.push({
pathname: 'XXXX',isYes
})
);
接:
this.props.location.isYes
例:
传:
const isYes=true;
this.props.dispatch(
routerRedux.push({
pathname: 'XXXX',isYes
})
);
接:
this.props.location.isYes