Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Grails 中读到了转发和重定向,但不明白为什么下面的代码会打印“foo”。
看:
def bar = { redirect (controller: "public", action: "index") // same happens with forward println "foo" // prints this in console?? WHY? }
在我看来重定向/转发必须跳过当前的方法执行......
这是一个错误还是我理解错误的概念?
因为这些只是函数调用——它们不能从调用函数(你的操作)中退出。只是放在return后面。
return