有沒有人知道最新版本的Grails(1.3.3)中controller.redirectArgs.action發生了什麼?它曾經正常工作,但現在我使用它時會得到NPE。 class FooController {
def someRedirect = {
redirect(action:"bar")
}
}
class FooControllerTests e
我試圖在第一個組合框(g:select)的GSP值中加載第二個組合框(g:select)值。 域類: class Person {
String name
static hasMany = [telephones:Telephone]
}
class Telephone {
String tNumber
Person person
st