在 Grails 控制器操作中获取远程字段名称

发布于 2024-12-26 09:35:57 字数 102 浏览 0 评论 0原文

我有一个带有远程字段的 Grails gsp 视图。 RemoteField 调用控制器操作。 在控制器操作中,我想知道调用控制器操作的远程字段的名称。

谢谢你, 弗朗西斯科

I have a Grails gsp view with a remoteField. The remoteField calls a controller action.
In the controller action I would like to know the name of the remoteField that invoked the controller action.

Thank you,
Francesco

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

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

发布评论

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

评论(1

别靠近我心 2025-01-02 09:35:57

只需将名称或 ID 之类的属性添加到您的 RemoteField 标记中,然后在控制器中您将通过参数访问它。

    <g:remoteField id="myId" controller="book" action="changeTitle" update="titleDiv"  
    name="title"    value="${book?.name}" />

在控制器中

  def changeTitle() {
     println params.id
  }

Just add an attribute like name or id to your remoteField tag and in your controller you will access it through the params.

    <g:remoteField id="myId" controller="book" action="changeTitle" update="titleDiv"  
    name="title"    value="${book?.name}" />

in controller

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