如何替换支架控制器操作并仍然在 Grails 中调用原始控制器操作?

发布于 2024-12-05 20:59:52 字数 282 浏览 1 评论 0原文

我需要“覆盖”控制器中的脚手架操作,执行一些操作,然后调用原始操作。我更喜欢使用动态生成的方法,而不必剪切和粘贴代码。

class AccountController {
    static scaffold = Account
    def list = {
        // do something
        // invoke "super.list" i.e. the dynamically generated scaffold
    }

有什么想法吗?

I need to 'override' a scaffolded action in a controller, do some stuff and then invoke the original. I would prefer to use the dynamically generated method and not have to cut and paste the code.

class AccountController {
    static scaffold = Account
    def list = {
        // do something
        // invoke "super.list" i.e. the dynamically generated scaffold
    }

Any ideas?

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

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

发布评论

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

评论(2

剪不断理还乱 2024-12-12 20:59:52

您可以考虑使用拦截器或过滤器(为什么?更干净)

控制器拦截器
http://grails.org/doc/ latest/guide/6.%20The%20Web%20Layer.html#6.1.5

过滤器 http://grails.org/doc/latest/guide/ 6.%20The%20Web%20Layer.html#6.6

You could consider using an interceptor or a filter instead (why? much cleaner)

Controller Interceptors
http://grails.org/doc/latest/guide/6.%20The%20Web%20Layer.html#6.1.5

Filters http://grails.org/doc/latest/guide/6.%20The%20Web%20Layer.html#6.6

眼藏柔 2024-12-12 20:59:52

在新控制器中完成所需操作后,只需重定向到原始控制器即可。大致如下:

class NewController
 def doSomethingOriginal = {
    redirect(controller: "scaffoldedcontroller", action: "list", params: params)
 }
}

希望这有帮助

Once you've done whatever you need to in your new controller, simply redirect to the original. Something along the lines of:

class NewController
 def doSomethingOriginal = {
    redirect(controller: "scaffoldedcontroller", action: "list", params: params)
 }
}

Hopefully this helps

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