xsl 样式表处理指令中是否可以有可选样式表?

发布于 2024-08-05 00:53:15 字数 216 浏览 2 评论 0原文

我已使用 将样式表应用到 xml 文档,当在我的应用程序中查看 XML 时,这非常有用。但是,如果导出 xml,我希望 XML 仍呈现为纯 XML,是否可以将样式表作为可选,而不是在找不到样式时产生此错误:

加载样式表时出错:加载 XSLT 样式表时发生网络错误:

I've applied a stylesheet to an xml document using <?xsl-stylesheet ...>, this works great when the XML is being viewed in my application. But if the xml is exported, I want the XML to still render as plain XML, is it possible to have the stylesheet as optional rather than it producing this error when style is not found:

Error loading stylesheet: A network error occured loading an XSLT stylesheet:

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

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

发布评论

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

评论(2

铁轨上的流浪者 2024-08-12 00:53:15

唯一的解决方案是在导出过程中删​​除 xml-stylesheet。

The only solution is to remove the xml-stylesheet during the export sadly.

自由范儿 2024-08-12 00:53:15

(我知道这是一个老问题,但需要更新)

在 XML 中使用 xsl-stylesheet 处理指令通常不是一个好主意,因为它的局限性适用性以及因为您将视图绑定到数据。虽然您可以通过让 Web 服务器根据请求的来源返回不同的样式表来使其动态化,但这并不理想。

相反,在您的应用程序中,使用任何可用的 XSLT 处理器并在查看器中显示 XML 之前对其进行处理。这很容易构建和维护,并且具有视图(XSLT)与数据(XML)分离的额外好处。正常查看 XML 时,它将不再有 PI,并将显示为常规 XML。

(I know ti's an old question, but it begs for an update)

It's generally not a good idea to use the xsl-stylesheet processing instruction in XML, because of its limited applicability and because you're binding the view to the data. While you could make it dynamic by having your web server return a different stylesheet depending on where the request comes from, this is not ideal.

Instead, in your application, use any available XSLT processor and process the XML prior to showing it in the viewer. This is simple to build and maintain and has the added benefit that the view (the XSLT) is separate from the data (the XML). When viewing the XML normally, it will not have the PI anymore and will be shown as regular XML.

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