我在我的应用中使用React 16,React-router-dom 4和Mobx。
我有用于私人路线的以下代码:
export default (props) => {
console.log('props from private',props)//Here i can see that the component doesn't contain the "history" prop.
const Component = props.component;
const match = props.computedMatch
if (isValidated()) {
return (
<div>
<div><Component {...props} match={match} /></div>
</div>
)
} else {
return <Redirect to="/login" />
}
};
这是路由设置:
export const history = createHistory();
const AppRouter = () => (
<Router history={history}>
<Switch>
<PrivateRoute path="/" component={Chat} exact={true} />
<Route path="/login" component={Login} />
</Switch>
</Router>
);
由于某些原因,历史记录属性在私有路由中根本不存在,因此我无法使用this.props.history.push函数以编程方式进行重定向。不过,道具确实传递到了“正常”路线。
我的代码有什么问题?
答案 0 :(得分:1)
在下面使用:
import {withRouter} from 'react-router-dom';
使用withRouter包装组件。
withRouter(component_name)