我在控制器中调用索引方法
def index() {
childInstance = Child.get(params.id)
if(childInstance){
System.out.println("CHILD" + childInstance.firstname)
def messages = currentUserTimeline()
[profileMessages: messages,childInstance:childInstance]
} else {
def messages = currentUserTimeline()
[profileMessages: messages]
System.out.println("ALL")
}
}
在我的 gsp 页面中
${childInstance.firstname}
如果我通过一个 childInstance 这很好,但如果我不通过一个空指针我得到一个 500 有没有办法我可以在 gsp 中做一个 if 语句所以我可以做到这一点
if(childInstance){
${childInstance.firstname}
} else {
All
}