我对React Router完全陌生。
我有这条路线
<PrivateRoute exact path="/quiz-setup/:job" component={QuizSetupMain} />
我将参数设置为工作。所以我会这样行动
history.push({
pathname: '/quiz-setup',
search: this.props.selectedJdName
})
我的私人路线->
return hasUserLogIn ?
(
<Route
{...rest}
path={path}
component={Component}
/>
)
:
(
<Redirect
to={{
pathname: "/login",
state: { from: path }
}}
/>
)
};
但是现在,它与该路线不匹配。那我该怎么办呢?