SSI 和 XSL:xml 显示为 blob
我正在构建一个菜单并对其进行设置,以便使用标准 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,您的 XSL 转换不会那样工作。 您必须将 XML 文档单独发送到浏览器,然后内置的 xsl 转换器将引用样式表并执行转换。
您所得到的是一个已经呈现的 HTML 页面,并且您将 XML 作为渲染到输出流中的一块 xml 包含在内,但浏览器不知道要转换它,因为它没有:
。 ..PI 位于页面开头。 请记住,这些是由浏览器而不是服务器处理的。
您需要转换 XML 服务器端,例如
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:
...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.