使用Flow Router,Meteor和React进行导航

时间:2016-12-12 10:00:47

标签: javascript reactjs meteor

我遇到问题,将我的客户重定向到某个地址。

例如,客户端转到此网址“http://localhost:3000/home”。 如果客户使用此代码转到“http://localhost:3000/msg”,

<a href="msg" >Link</a>

它正在发挥作用。但是当来自“http://localhost:3000/people/231233213123”的客户端和客户端点击带有此代码的链接时,

<a href="msg">Link</a>

它将转到“http://localhost:3000/people/231233213123/msg”。

我需要让客户转到“http://localhost:3000/msg”。

我试过这个代码,

<a href="../../msg">Link</a>

但它会重定向到“http://localhost:3000/people/msg”。

我在React和Meteor中使用Flow路由器。

1 个答案:

答案 0 :(得分:1)

您需要在网址前加斜杠:

<a href="/msg">Link</a>