我正在尝试制作简单的标签lib:
<user:isLoggedIn>
<a href = "/auth/logout">logout</a>
</user:isLoggedIn>
标记lib def:
def isLoggedIn = { attr,body ->
User currentUser = springSecurityService.getCurrentUser()
if(currentUser){
out << body()
}
}
我在页面上看到的内容:
<a href = "/auth/logout">logout</a>
但我期待着:
logout
答案 0 :(得分:1)
如果您的tag lib
类定义中有此内容,请将其删除。
static defaultEncodeAs = 'html'