もちろん、Grailsには「if」および「else」タグが組み込まれています。
<g:if test="${name == 'Fred'}">
Hello Fred, welcome back from your trip!
</g:if>
<g:else>
Hello ${name}
</g:else>
gsp ページで ${} 機能を純粋に使用して、このようなことを行うことは可能ですか? を使用しない
<g:if> and
<g:else>
タグ?