繁体   English   中英

使用Flow Router,Meteor和React导航

[英]Navigation with Flow Router, Meteor and React

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

例如,客户端转到该URL“ 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路由器。

您需要在网址前加一个斜杠:

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM