嗨,我是一个新手反应我正在尝试的是从一个组件导航到另一个组件,为此我使用了以下逻辑
class App extends Component { getData(){ this.props.history.push('/test-data'); } render() { return ( <div> <h1>ReactJS</h1> <div > <button id="data" onClick={this.getData}>test data</button> <button id="con">test info</button> </div> <BrowserRouter> <div> <Route path="/test-data" component={TestData} /> <Route path="/test-info" component={TestInfo} /> </div> </BrowserRouter> </div> ) }}
当我尝试导航到页面时,我遇到了错误
Cannot read property 'props' of undefined
下面是我的stackblitz代码: - https://stackblitz.com/edit/react-xtshvq
拉丁的传说
相关分类