gpt4 book ai didi

javascript - 警告 : A path must be pathname + search + hash only, 不是完整的 UR - React js

转载 作者:行者123 更新时间:2023-11-30 14:37:30 27 4
gpt4 key购买 nike

我遇到了这个错误:

Warning: A path must be pathname + search + hash only, not a full URL like "http://www.shadyab.com/category/tehran/fast_food"

   <li className="hidden-xs hvr-shutter-out-vertical">
<Link to={serverConstants.DOMAIN_URL + 'category/tehran/fast_food'} >فست فود</Link>
</li>

我的常量文件。

export const serverConstants = {
DOMAIN_URL: "http://www.shadyab.com/",

}

如果我删除 serverConstants.DOMAIN_URL,我的 url 将附加到当前 url。

例如:

当前网址:

http://localhost:3000/category/tehran/foreign_restaurant

现在如果我点击下面的链接:

<Link to={'category/tehran/fast_food'} >فست فود</Link>

我的网址是这样的:

http://localhost:3000/category/tehran/category/tehran/fast_food

我的路线:

<Route path="/category/:city/:category" component={Category} />

我的 react 路由器版本:

"react-router": "^3.0.5",

最佳答案

使用Link,不需要指定域名,只需指定Route路径即可

  <li className="hidden-xs hvr-shutter-out-vertical">
<Link to={'/category/tehran/fast_food'} >فست فود</Link>
</li>

关于javascript - 警告 : A path must be pathname + search + hash only, 不是完整的 UR - React js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50198315/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com