我想推送一个新路径作为设置搜索查询的 URI 的补充。
例子:
当前位置:https://example.com/foo?bar=123&foobar=123
当我打电话时history.push('newPath')
,我会以https://example.com/newPath
. 然而,我想要得到的是https://example.com/foo/newPath
.
一种解决方案是调用history.push('foo/newPath')
,或者如果我保存当前路径并newPath
在顶部添加想要的路径 (),但我希望这history.push
可能有办法处理这个问题?
有只小跳蛙
相关分类