我知道这可能是一个愚蠢的问题,但我试图了解opencms中的jsp模板。
即使我们在jsp中有htm标签。什么是cms标签的实际用途,例如:
<cms:template element="body">
<cms:include element="body" />
答案 0 :(得分:1)
如此wiki page中所述,您可以通过cms tag cms:template在jsp文件中定义模板部件,然后通过cms tag cms:include
将它们包含在您的jsp页面中答案 1 :(得分:0)
cms:template标签
使用标记,您可以向模板添加控制结构,以允许它处理多个页面元素。
cms:include标记
此标记用于在运行时动态地包含OpenCms VFS中的文件。包含的文件被视为具有可选附加请求参数的请求。 通过使用以下属性之一,可以使用不同的选项来确定所包含文件的名称: - 页面 - 财产 - 属性
如果未设置这些属性,则评估标记的主体,并将结果用作文件名。
<%@ page session="false" %>
<%@ taglib prefix="cms" uri="http://www.opencms.org/taglib/cms" %>
<cms:template element="head">
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title><cms:property name="title" escapeHtml="true" /></title>
<meta HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; CHARSET=<cms:property name="content-encoding" default="ISO-8859-1" />">
<link type="text/css" rel="stylesheet" href="<cms:link>../resources/mystyle.css</cms:link>">
<cms:editable />
</head>
<body>
<h2>My first template head</h2>
<!-- Main page body starts here -->
</cms:template>
<cms:template element="body">
<h2>This is the first page element:</h2>
<cms:include element="body" editable="true"/>
<cms:template ifexists="body2">
<h2>This is the second page element:</h2>
<cms:include element="body2" editable= "true"/>
</cms:template>
</cms:template>
<cms:template element="foot">
<!-- Main page body ends here -->
<h2>My first template foot</h2>
</body>
</html>
</cms:template>