使用多个 Xslt

发布于 2024-11-04 11:26:24 字数 118 浏览 0 评论 0原文

我可以使用多个 Xslt 创建单个输出 xml 文件吗?

在我的项目中,我需要单独的 Xsl 文件用于字体、图像、布局等。那么,是否可以将具有多个 xslt 文件的单个文档转换为单个转换后的 xml 文档。

Can I use multiple Xslt to create a single output xml file.

In my project, I need separate Xsl files for fonts, images, layout etc. So, is it possible to transform a single document with multiple xslt files into a single transformed xml document.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残花月 2024-11-11 11:26:24

通常,您使用两个特定元素组合 xslt。

选择 1.


>

在这种情况下,导入的样式表的优先级将低于导入的样式表。

选择 2.



在这种情况下,您将把 fonts.xsl 的内容包含到您的主 xsl 中。这是真正的合并。

有关详细信息,请参阅将样式表与包含和导入结合起来

希望这有帮助。

Normally you combine xslt using two specific elements.

Choice 1. <xsl:import>


<xsl:import href="fonts.xsl"/>

In this case the imported stylesheet will have lower precendece that the importing one.

Choice 2. <xsl:include>


<xsl:include href="fonts.xsl"/>

In this case you will include the contents of fonts.xsl into your main xsl. It's a real merge.

For more information have a look at Combining Stylesheets with Include and Import.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文