React router dom LINK 连接

React router dom LINK concatunates

我正在尝试在某些类别之间创建导航,同时更改 link 单击 我需要得到这个 localhost/blog/category/:category1 它适用于选择的第一个类别但是当我再次单击时我得到这个 localhost/blog/category/blog/category/:category2.

我正在使用 LINK 进行重定向

<Link
  className="nav-link"
  aria-current="page"
  to={`blog/category/${item}`}
>

谢谢

试试这个:

<Link
  className="nav-link"
  aria-current="page"
  to={`/blog/category/${item}`}
>