使用多个 Xslt
我可以使用多个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您使用两个特定元素组合 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.