我的 href 没有重定向到 /logout 页面

发布于 2024-10-18 12:41:53 字数 259 浏览 1 评论 0原文

我在 yui 菜单中列出的 href 遇到了麻烦。这是我的代码

<a class="yuimenuitemlabel" href= "<@spring.url "/logout"/>"          />

由于某种原因,此链接没有重定向到 /logout。 PTW,当我在 URL 中手动写入 /logout 时,它工作正常。这是因为 href 标签没有将 /logout 放入 URL 中。 有什么建议吗?

I'm facing a trouble with my href which is listed inside yui menu. Here is my code

<a class="yuimenuitemlabel" href= "<@spring.url "/logout"/>"          />

For some reason this link is not redirecting to /logout.
PTW, when I write /logout manually in my URL, it works fine. It is that the href tag is not putting /logout in the URL.
Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖风昔人 2024-10-25 12:41:53

您的 HREF 标记似乎没有文本。此外,您可能想尝试用单引号括起 freemarker 标签。试试这个:-

<a class="yuimenuitemlabel" href='<@spring.url "/logout"/>'>Logout</a>

Your HREF tag doesn't seem to have a text. Further, you might want to try wrapping the freemarker tag with single quotes. Try this:-

<a class="yuimenuitemlabel" href='<@spring.url "/logout"/>'>Logout</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文