Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个标题模板,我想在其中检查用户是否在主页上(index.gsp)。我试过了: <g:set var="isHome" value="${params.get("controller") == null}" />
但是对于我没有控制器的错误,这也返回 true。有什么建议么?
如果您的标题在布局中,您可以使用 Sitemesh 页面参数。添加到您的主页:
<parameter name="isHome" value="true"/>
然后在您的布局中:
<g:set var="isHome" value="${pageProperty(name: 'page.isHome')}"/>