播放框架传递自定义标签操作链接@{}

发布于 2025-01-05 00:27:51 字数 491 浏览 1 评论 0原文

我想弄清楚如何构建一个简单的自定义标签(用于学习目的) 我的目标是构建一个简单的表单标签,因此当我需要时,我可以通过以下方式使用它#{simpleTag params../}

simpleTag.html

<form name="input" action="${_action}" method="get">
            ${_inputTitle} <input type="text" name="${_varName}" />
        <input type="submit" value="Submit" />
</form>

我的主要问题是 - 在上面的代码中 action="${_action}" 我想改用反向查找符号,例如 action="@{_somthing }" 但是我如何将这样的参数传递给播放框架中的标记?

I am trying to figure out how to build a simple custom tag (for learning purposes)
My goal is to build a simple form tag, so when i need to i can use it in the following way #{simpleTag params.. /}.

simpleTag.html

<form name="input" action="${_action}" method="get">
            ${_inputTitle} <input type="text" name="${_varName}" />
        <input type="submit" value="Submit" />
</form>

my main issue is - in the above code the action="${_action}" i would like to use the reverse lookup notation instead, Such as action="@{_somthing}" but how can i pass such parameter to tag in play framework?

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

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

发布评论

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

评论(1

假面具 2025-01-12 00:27:51

如果你尝试这样的事情会怎样:

%{ action = play.mvc.Router.reverse("SomeController.someAction")}%
#{simpleTag action:"${action}"/}

What if you try something like this:

%{ action = play.mvc.Router.reverse("SomeController.someAction")}%
#{simpleTag action:"${action}"/}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文