This answer并未完全覆盖它,因为您似乎必须将重建的网址传递到pathname
如果我在这些路线的子页面上:
<Route name="Parent" path="/parent/:parentId" component={Parent}>
<Route name="Child" path="/child/:childId" component={Child}>
如何以编程方式更新:parentId
而无需重新构建整个网址?
history.push({ ...., params: {parentId: 'newParent'}})
的某些内容是理想的。
谢谢!