Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从 XSLT 发送 xml 消息。
但是当我在 XSLT 中间为我的消息提供 xml 声明时。它抛出错误,因为它不期望在页面中间出现这种情况。如何通过 XSL 发送带有 xml 声明的 xml 消息?
任何输入表示赞赏。
谢谢。
您可以在样式表的顶层使用<xsl:output>标记(XSLT 1.0、XSLT 2.0)来构造输出的 XML 声明,例如:
<xsl:output>
<xsl:output method="xml" encoding="UTF-8" standalone="yes" />
将声明
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
在输出文档的顶部。