我目前正在进入XSLT世界,因为我要在两个XML文件之间进行转换。
我正在开始,但是我面临一个小问题,这使得我的文件在每一代都难以阅读。
我输入的是XML:
<?xml version="1.0" encoding="utf-8"?>
<ConfigurationNodes>
<Versions>
<PackagesA Version="1.8" />
<PackageB Version="1.1" />
<PackageC Version="1.7" />
</Versions>
<ConfigurationNode Type="SomeSpecialType">
<Name>MyName</Name>
<Revision>0</Revision>
<Description >The big full description here</Description>
</ConfigurationNode>
</ConfigurationNodes>
我目前正在应用以下转换:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="yes" />
<xsl:template match="ConfigurationNode[@Type='SomeSpecialType']">
<Object Name="Configuration" NodeType="SomeOtherType">
<Property Name="Name" Value="{Name/text()}" Type="System.String"/>
<Property Name="Description" Value="{Description/text()}" Type="System.String"/>
<Property Name="Revision" Value="{Revision/text()}" Type="System.Int32" />
</Object>
</xsl:template>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
这项工作,但目前我的Property
元素在同一行(在我的实际案例中,我在这里有10个属性):
<?xml version="1.0" encoding="utf-8"?>
<ConfigurationNodes>
<Versions>
<PackagesA Version="1.8" />
<PackageB Version="1.1" />
<PackageC Version="1.7" />
</Versions>
<Object Name="Configuration" NodeType="SomeOtherType"><Property Name="Name" Value="MyName" Type="System.String" /><Property Name="Description" Value="The big full description here" Type="System.String" /><Property Name="Revision" Value="0" Type="System.Int32" /></Object>
</ConfigurationNodes>
我的目标是
<?xml version="1.0" encoding="utf-8"?>
<ConfigurationNodes>
<Versions>
<PackagesA Version="1.8" />
<PackageB Version="1.1" />
<PackageC Version="1.7" />
</Versions>
<Object Name="Configuration" NodeType="SomeOtherType">
<Property Name="Name" Value="MyName" Type="System.String" />
<Property Name="Description" Value="The big full description here" Type="System.String" />
<Property Name="Revision" Value="0" Type="System.Int32" />
</Object>
</ConfigurationNodes>
经过一些研究,我试图放一个<xsl:preserve-space elements="*"/>
,没有运气。
我到处都看到有相反问题的人(空间太大),但我找不到与我相同的问题。
我想你已经猜到我在Visual Studio(msxsl命名空间)中进行这种转换。
答案 0 :(得分:7)
我没有要测试的MSXML处理器,但我设法使用 libxslt 处理器产生同样的问题。在这里,可以通过添加:
来解决问题<xsl:strip-space elements="*"/>
到样式表的顶层。如果你正在使用身份转换模板,那么BTW应该几乎总是包含在内。