gpt4 book ai didi

javascript - 简单重定向到另一个页面是错误的

转载 作者:行者123 更新时间:2023-12-03 02:23:35 24 4
gpt4 key购买 nike

如果用户登录成功,我会将其重定向到仪表板。

它曾经工作正常,直到我使用 tomcat 部署它。

现在网址是http://localhost:8080/myWar/

所以这个:

 window.location.href = "/dashboard";

重定向至http://localhost:8080/dashboard

我收到错误 404。如何动态重定向它?

最佳答案

路径通常都是相同的:

/ - “根”路径

./ - 相对于文件位置

因此您需要将 window.location.href = "/dashboard"; 更改为 window.location.href = "./dashboard";

https://www.coffeecup.com/help/articles/absolute-vs-relative-pathslinks/

Difference between Relative path and absolute path in javascript

编辑:

因此,如果您当前的位置是 myHost/mypath/subpath 并且您执行 window.location.href="/myPath" 您将被重定向到 myHost/myPath,而 window.location.href="./myPath" 将您重定向到 myHost/mypath/subpath/myPath

关于javascript - 简单重定向到另一个页面是错误的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49050242/

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