4

我们将在我们的 JSP/spring-project 中为某种模板引擎使用 JSTL 和自定义 JSTL-tags。

有没有办法创建一个看起来像这样的标签:

<div id="site">
    <div id="header">Some title</div>
    <div id="navigation"> SOME DYNAMIC CONTENT HERE </div>
    <div id="content"> ${content} </div>
    <div id="footer"></div>
</div>

并像这样使用它:

<mytags:template>
    <h1>Title</h1>
    <p>My content!</p>
</mytags:template>

即在自定义 JSTL 标记中使用 body-content ...

这有效:

<mytags:template content="some content... not HTML" />

但在我们的例子中不是很有用。

4

1 回答 1

5

类似于 McDowell 的答案,但具有更大的灵活性,是声明一个作为片段的属性。http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPTags5.html#wp89854

eg, //foo.tag 标签文件

<%@ attribute name="greeting" fragment="true" %>
<%@ attribute name="body" fragment="true" %>
<h1><jsp:invoke fragment="greeting" /></h1>
<p>body: <em><jsp:invoke fragment="body" /></em></p>

.jsp 文件

<x:foo>
   <jsp:attribute name="greeting"><b>a fancy</b> hello</jsp:attribute>
   <jsp:attribute name="body"><pre>more fancy body</pre></jsp:attribute>
</x:foo>

这将产生这个标记:

<h1><b>a fancy</b> hello</h1>
<p>body: <em><pre>more fancy body</pre></em></p>
</body>

主要优点是能够有两个片段,而不仅仅是一个带有标签的片段。

于 2009-10-20T12:08:41.157 回答