グレイル 2.1.1
私のコントローラーで:
def someAction() {
def projectVersionInstance = ProjectVersion.get(params.id)
Cookie cookie = new Cookie("lastProjectVersion","${projectVersionInstance.id}")
response.addCookie(cookie)
.....
}
私のGSPでは:
<g:if test="${cookie(name: 'lastProjectVersion')}">
....
</g:if>
g:if
タグ内のコンテンツが表示されません。私も次のことを試しました:
<g:cookie name="lastProjectVersion" />
そして、私は何も得ません。コントローラーで表示でき、ブラウザーの Cookie 管理で確認できます。