我有一些路线,例如:
<Route exact={true} path="/" component={Home} />
<Route path="/parent" component={withoutRouting(Parent)} />
<Route path="/parent/*" component={withoutRouting(Child)} />
当转到子路径(parent / any-child)时,除了Child组件的html之外,还会呈现Parent组件的html,其中预期的行为只是应该呈现Child组件的html。
我曾经使用过一次反应,并且不记得遇到过这种情况。这种行为的常见原因是什么,我假设我只是做错了。