【发布时间】:2020-09-08 06:55:17
【问题描述】:
现在是
http://localhost:8001/components/button/
我想要
http://localhost:8001/components/button/?theme=dark
我用过
browserHistory.push({
pathname: '',
query: {theme: dark},
})
and
browserHistory.push({
pathname: 'components/button',
query: {theme: dark},
})
and
browserHistory.push({
pathname: 'button',
query: {theme: dark},
})
全部失败。
我该怎么办?能帮帮我吗,谢谢!
【问题讨论】:
-
你不能只做
browserHistory.push("/components/button/?theme=dark")或试试browserHistory.push({ pathname: 'components/button', search: '?theme: dark', }) -
@dikuw 结果是 localhost:8001/components/button/components/button/?theme=dark
标签: reactjs routes react-router