本文介绍了在 grails 中的控制器操作之间传递对象的最佳方式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要一个链接以在我的 web 应用程序中打开另一个视图以显示有关指定对象的信息.在 grail 中的控制器操作之间传递对象的最佳方法是什么?

I want a link to open up another view in my webapp to display information about the specified object.What is the best way to pass objects between controllers actions in grail?

推荐答案

可以使用 链控制器方法.

链接允许模型从一个动作保留到下一个动作.

Chaining allows the model to be retained from one action to the next.

这篇关于在 grails 中的控制器操作之间传递对象的最佳方式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 15:44