我使用的反應路由器V4如何從沒有結尾的斜線路由到子目錄?
假設我在以下位置
http://localhost:3000/articles
我想這個位置有一個反應的路由器鏈接元素,它指向
http://localhost:3000/articles/new
第一次嘗試:
<Link to="new" />
個
點
http://localhost:3000/new
第二次嘗試:
<Link to="/new" />
從任何位置點
http://localhost:3000/new
第三次嘗試:
<Link to="new" />
從
http://localhost:3000/articles/ /* notice the slash at the end */
點
在
http://localhost:3000/articles/new
成功,但我需要它的工作範圍:
http://localhost:3000/articles
你能張貼你的路線文件嗎? –
不好意思,但路由是分佈在幾個文件之間,所以這將是太多的代碼 – henk