SSI 和 XSL:xml 显示为 blob

发布于 2024-07-07 08:18:58 字数 234 浏览 11 评论 0原文

我正在构建一个菜单并对其进行设置,以便使用标准 SSI 标记来包含我的 xml 文档。 xml 文档包括带有 的 xsl 文档。 由于某种原因,xsl 文档无法工作。 xml 显示为 blob。

I am building a menu and have it set up so that I use a standard <!--#include virtual = "myDoc.xml" --> SSI tag to include my xml document. The xml document includes the xsl document with <?xml-stylesheet type="text/xsl" href="myOtherDoc.xsl"?>. For some reason the xsl document is not working. The xml is being displayed as a blob.

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

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

发布评论

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

评论(1

触ぅ动初心 2024-07-14 08:18:58

不幸的是,您的 XSL 转换不会那样工作。 您必须将 XML 文档单独发送到浏览器,然后内置的 xsl 转换器将引用样式表并执行转换。

您所得到的是一个已经呈现的 HTML 页面,并且您将 XML 作为渲染到输出流中的一块 xml 包含在内,但浏览器不知道要转换它,因为它没有:

<?xml-stylesheet type="text/xsl" href="myOtherDoc.xsl"?>

。 ..PI 位于页面开头。 请记住,这些是由浏览器而不是服务器处理的。

您需要转换 XML 服务器端,例如

<!-- #include virtual="doMenuXform.asp" -->

Unfortunately your XSL transform won't work like that. You'd have to send the XML document alone to the browser where the built in xsl transformer would then reference the stylesheet and perform the transform.

What you've got is an HTML page already being rendered and you're including the XML as just a chunk of xml rendered into the output stream, but the browser won't know to transform it because it doesn't have the:

<?xml-stylesheet type="text/xsl" href="myOtherDoc.xsl"?>

...PI at the start of the page. Remember these are processed by the browser not the server.

You would need to transform the XML server side e.g.

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