【发布时间】:2014-10-21 08:15:36
【问题描述】:
如果我在同一个类中获得与以下代码中的重定向操作相同的结果,我不能只调用没有重定向操作的函数“second”吗?
class SampleController {
def first() {
// redirect to the "second" action...
redirect action: "second"
}
def second() {
// ...
} }
【问题讨论】:
标签: grails redirect grails-controller