我如何在< a>的href标签中附加文本标签

发布于 2025-01-22 12:31:17 字数 432 浏览 1 评论 0原文

我有一个标签,该标签应该具有一个HREF,其中包含需要附加的文本。 下面的标签应为“ href =” open-job?123“,这里“ 123”来自其他来源,源是从控制器传递的模型对象填充的胸腺对象。

我如何在href中附加文本以包含简单的文本(“ open-job”)和来自胸腺的对象的文本(“ th:text =“ $ {job_form [0]}”)

<a href="open-job" class="btn btn-primary">View Detail</a>

我尝试了以下内容不出所料,这导致错误。

<a href="open-job+th:text="${Job_Form[0]}">View Detail</a>

I have an tag, which should have an href that contains text that needs to be appended.
The below tag should be "href="open-job?123", here "123" is coming from a different source, the source is a thymeleaf object which is being populated from a model object which is passed from the controller.

How can I append text in href to contain simple text("open-job") and text from a thymeleaf object("th:text="${Job_Form[0]}")

<a href="open-job" class="btn btn-primary">View Detail</a>

I tried the below and as expected, it resulted in error.

<a href="open-job+th:text="${Job_Form[0]}">View Detail</a>

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文