在 Grails 控制器操作中获取远程字段名称
我有一个带有远程字段的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将名称或 ID 之类的属性添加到您的 RemoteField 标记中,然后在控制器中您将通过参数访问它。
在控制器中
Just add an attribute like name or id to your remoteField tag and in your controller you will access it through the params.
in controller