下列指示信息是为“资源”透视图编写的,但是也将适用于其他多个透视图。
遵循下列步骤来将 HTML 模板添加至 XSL 文件:
在 XSL 文件中将出现以下文本:
<xsl:output method="html" encoding="UTF-8"/> <xsl:template match="/"> <html> <head> <title>Untitled</title> </head> <body> <xsl:apply-templates/> </body> </html> </xsl:template>
<xsl:apply-templates/> 元素将递归地处理 XSL 文件所应用于的 XML 文档的所有子代。