Grails GSP中有没有办法替换以下内容
<tmpl:/templates/header />
<!-- tmpl namespace call is equivalent to <g:render template="/templates/header" /> -->
<!-- definition of inner content -->
<tmpl:/templates/footer />
使用外部模板?本质上,一种导入包装外部模板的方法,
<outertemplate:templatename>
<!-- header will be rendered from outer template -->
<!-- definition of inner content -->
<!-- footer will be rendered from outer template -->
</outertemplate:templatename>
并且外部模板的定义类似于
<!-- definition of header content -->
<!-- placeholder or attr for inner content -->
<!-- definition of footer content -->
将包装内容封装在一个模板而不是两个模板中。IIRC 在 JSF 下有一种方法可以做到这一点,但我在 GSP 下找不到等价物。