我正在尝试使用App.jsx中的历史记录推送进行导航。 我已经用下面的代码了。
componentDidMount() {
if(!this.authService.isAuthenticated())
{
this.props.history.push('/Login');
}
}
但是由于历史记录未定义,因此出现错误。 我尝试记录道具对象,并得到以下输出。
请帮助我浏览app.jsx。
答案 0 :(得分:1)
用QWebEngineSettings::AllowGeolocationOnInsecureOrigins
导出组件。
使用路由器导入。
withRouter
像这样在您的组件中导出。
import { withRouter } from 'react-router'