如何在 grails 2.2.2 Filter Colde 中为过滤器中的变量设置值:
all(controller:"*",action:"*"){
before = {
}
after={
....
....
....
request.setAttribute("LoggedId",user.id);
....
....
}
}
在 Gsp 页面上,我想使用 Loggedid 值
Gsp页面代码:
....
...${LoggedId}
....
...
那么如何在过滤器中设置值并在gsp页面中使用......有没有可能的方法......
请帮助我,谢谢,