0

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>

但是,如果我尝试指定matchselect<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>
4

1 回答 1

0

如果您使用的是 XSLT 2.0 并且您正在尝试获得一个缩进的结果文档(每个 XML 内部级别都有一个制表符缩进),那么您应该能够将一个xsl:output元素添加到您的 xsl:stylesheet元素,并指定应该启用缩进。

例如,在 xsl:stylesheet 元素的开头,您可以添加以下内容:

<xsl:stylesheet>
    <xsl:output indent="yes" />
    <!-- rest of document -->
</xsl:stylesheet>

另请参阅methodxsl:output 元素的属性,该属性设置常见输出类型的默认值,例如“xml”、“html”和“xhtml”。

于 2013-04-17T19:15:23.580 回答