XSLT用作模板引擎。我有一些模板结构,它们使用params从另一个传输数据:
<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>
答案 0 :(得分:0)
如果您正在使用XSLT 2.0并且您正在尝试获取缩进的结果文档(对于XML的每个内部级别使用制表符缩进),那么您应该能够添加xsl:output元素到你的xsl:stylesheet元素,并指定应该启用缩进。
例如,在xsl:stylesheet元素的开头,您可以添加以下内容:
<xsl:stylesheet>
<xsl:output indent="yes" />
<!-- rest of document -->
</xsl:stylesheet>
另请参阅xsl:output元素的method
属性,该元素设置常见输出类型的默认值,例如“xml”,“html”和“xhtml”。