Grails 按钮语法

发布于 2024-11-09 16:20:17 字数 153 浏览 0 评论 0原文

嘿。是否有像这样的特殊标签:

<g:link controller="xx" action="yy_" id="${it.id}">
</g:link>

不需要表单,但用按钮代替 textLink ?

Hey. Is there any special tag like this one:

<g:link controller="xx" action="yy_" id="${it.id}">
</g:link>

that don't need a form, but instead of a textLink is a button ?

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

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

发布评论

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

评论(4

酒与心事 2024-11-16 16:20:17

实际上你已经完成了一半。就像在纯 HTML 中一样,只需将按钮放在标签内即可。您可以使用 grails 中的标准按钮 CSS 样式。

view:

<g:link action="toLink"> 
   This is a grails app with a button link without a form or submit. Click this 
   <input type="button" value="I'm a Button Link" class="button"/> 
   and it should jump to the action.
</g:link>

controller:
def toLink = {
  render "It worked!"
}

它看起来像这样:

在此处输入图像描述

You actually have it half done already. Just like in plain HTML, just put the button INSIDE the tag. You can use the standard button CSS styling from grails.

view:

<g:link action="toLink"> 
   This is a grails app with a button link without a form or submit. Click this 
   <input type="button" value="I'm a Button Link" class="button"/> 
   and it should jump to the action.
</g:link>

controller:
def toLink = {
  render "It worked!"
}

Here's what it would look like:

enter image description here

惟欲睡 2024-11-16 16:20:17

创建

create a <button> element, or an <img> or <a> element, then use the createLink tag to generate the URL that it requests when clicked

半葬歌 2024-11-16 16:20:17
<g:link controller="home" action="doLogout">
    <button type="button">Logout</button>
</g:link>
<g:link controller="home" action="doLogout">
    <button type="button">Logout</button>
</g:link>
つ低調成傷 2024-11-16 16:20:17

您可以在链接标记中放置一个

,其样式看起来像您想要的那样......

you could just put a <div> or <img> in the link tag that is styled to look the way you want...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文