播放框架传递自定义标签操作链接@{}
我想弄清楚如何构建一个简单的自定义标签(用于学习目的) 我的目标是构建一个简单的表单标签,因此当我需要时,我可以通过以下方式使用它#{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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你尝试这样的事情会怎样:
What if you try something like this: