我正在使用react-router并想要添加重定向。这是我正在使用的重定向
<Redirect from="/" to={{ pathname: "/sth", search: "?tst=1" }} />
由于某些未知原因,我从反应中得到以下错误:
Warning: Failed prop type: Invalid prop `to` of type `object` supplied to `Redirect`, expected `string`.
in Redirect
我无法找到为什么这不起作用。有什么想法吗?