XSLT 用作模板引擎。我有一些模板结构,它们使用参数相互传输数据:
<xsl:template match="/" mode="common-page">
<xsl:param name="page-content"/>
…
<xsl:copy-of select="$page-content"/>
…
</xsl:template>
并调用该模板:
<xsl:template match="/">
<xsl:apply-templates select="." mode="common-page">
<xsl:with-param name="page-content">
<!--some html content with formatting-->
<html>
<body>
<h1>Header</h1>
<div>
<p>Text</p>
</div>
</body>
</html>
</xsl:with-param>
</xsl:apply-templates>
</xsl:template>
在这种情况下,html 内容中的格式仍然存在,输出为:
<html>
<body>
<h1>Header</h1>
<div>
<p>Text</p>
</div>
</body>
</html>
但是,如果我尝试指定match
或select
以<xsl:apply-templates>
(/result/page
而不是/
)格式清除。参数page-content
相同:
<html><body><h1>Header</h1><div><p>Text</p></div></body></html>
XML 示例:
<result xmlns:xlink="http://www.w3.org/TR/xlink" module="content" method="content" system-build="21199" lang="ru" header="Main page" title="Main page" request-uri="/.xml" pageId="2">
<meta>
<keywords/>
<description/>
</meta>
<user id="42" status="auth" login="admin" xlink:href="uobject://42" type="sv"/>
<parents/>
<page id="2" parentId="0" link="/" is-default="1" is-active="1" object-id="313" type-id="50" type-guid="content-page" update-time="1364964725" alt-name="index">
<basetype id="27" module="content">Content page</basetype>
<name>Main page</name>
<properties>
<group id="65" name="common">
<title>Params</title>
<property id="117" name="h1" type="string">
<title>H1</title>
<value>Main page</value>
</property>
</group>
</properties>
</page>
</result>