我想从一些XML文件中获取数据并将它们转换为新的XML文档.但是,我不希望在结果文档中发生XSLT中的命名空间定义.
换一种说法:
资源:
<Namespace:Root xmlns:Namespace="http://www.something.com">
样式表:
<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:Namespace="http://www.something.com">
结果:
<resultRoot xmlns:Namespace="http://www.something.com"> <!--I don't want the Namespace definition above-->
我正在使用msxsl进行转换.
您可以使用xsl:stylesheet元素的exclude-result-prefixes属性来禁止输出文档中的命名空间:
原文链接:https://www.f2er.com/xml/293155.html<?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:Namespace="http://www.something.com" exclude-result-prefixes="Namespace"> </xsl:stylesheet>
exclude-result-prefixes="ns1 ns2 ns3"
When a stylesheet uses a namespace declaration only for the purposes of addressing the source tree,specifying the prefix in the exclude-result-prefixes attribute will avoid superfluous namespace declarations in the result tree.