无法在带有原始文件的文档中创建具有URL'http://components/'的历史状态对象。 下面是我的代码。我正在尝试在我的组件内部实现此子路由。我遇到上述错误。
<ul>
<li>
<Link to={`${this.props.match.url}/rendering`}>Rendering with React</Link>
</li>
<li>
<Link to={`${this.props.match.url}/components`}>Components</Link>
</li>
<li>
<Link to={`${this.props.match.url}/props-v-state`}>Props v. State</Link>
</li>
</ul>
<Route path={`${this.props.match.url}/rendering`} component={compo1} />
<Route path={`${this.props.match.url}/components`} component={compo2} />
<Route path={`${this.props.match.url}/sumne`} component={compo3} />
<Route
exact
path={this.props.match.url}
render={() => <h3>Please select a topic.</h3>}
/>