标签: grails
我正在尝试比较gsp中的变量。
如果我这样做:
<g:if test="${p.id.equals(1)}">
我得到了结果。
但如果我这样做:
<g:if test="${p.id.equals(id)}">
我从来没有得到任何。
答案 0 :(得分:2)
尝试
<g:if test="${p.id == id}">