使用XSLT转换转换XML

时间:2018-02-05 06:02:50

标签: xml xslt microsoft-dynamics-nav

我正在尝试将xml转换为xsl。 这是我的xml文件。

<?xml version="1.0" encoding="UTF-8"?>
<ml_root>
    <entry xmlns="http://www.w3.org/2005/Atom"
        xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"
        xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"
        xml:base="http://ta-nb-manill.totalamber.com:7048/DynamicsNAV90/OData/"
        m:etag="W/&quot;'28%3BDgAAAAJ7%2F0IATABVAEUAAAAAAA%3D%3D6%3B1604150%3B'&quot;">
        <id>http://ta-nb-manill.totalamber.com:7048/DynamicsNAV90/OData/Company('CRONUS%20International%20Ltd.')/Location('BLUE')
        </id>
        <category term="NAV.Location"
            scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
        <link rel="edit" title="Location"
            href="Company('CRONUS%20International%20Ltd.')/Location('BLUE')" />
        <title />
        <updated>2018-01-09T05:55:24Z</updated>
        <author>
            <name />
        </author>
        <content type="application/xml">
            <m:properties>
                <d:Code>BLUE</d:Code>
                <d:Name>Blue Warehouse</d:Name>
                <d:ETag>28;DgAAAAJ7/0IATABVAEUAAAAAAA==6;1604150;</d:ETag>
            </m:properties>
        </content>
    </entry>
</ml_root>

我尝试使用以下XSLT转换它。

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
   <xsl:output encoding="UTF-8" method="xml" indent="yes"/>

   <xsl:template match="/">
      <ROWS>
         <COMPANY_SITE_TAB>
            <xsl:for-each select="ml_root/entry/content/properties">
            <ROW>
               <COMPANY>TCO</COMPANY>
               <CONTRACT><xsl:value-of select="Code"/></CONTRACT>
               <COUNTRY>UNITED KINGDOM</COUNTRY>
               <DESCRIPTION><xsl:value-of select="Name"/></DESCRIPTION>
            </ROW>
            </xsl:for-each>
         </COMPANY_SITE_TAB>
      </ROWS>
   </xsl:template>
</xsl:stylesheet>

但它只提供以下输出。

<ROWS>
   <COMPANY_SITE_TAB/>
</ROWS>

你能帮我理解错误。

1 个答案:

答案 0 :(得分:2)

如果仔细检查输入XML,则会有多个与XML中的元素关联的名称空间(以xmlns开头的属性)。由于这些名称空间未在XSLT中映射,因此输出XML不会显示任何数据。

对于输出XML,从中访问数据的元素属于以下命名空间

xmlns="http://www.w3.org/2005/Atom"
xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"
xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"

我们还需要在XSLT中映射这些名称空间,并且输出中不需要名称空间,我们使用exclude-result-prefixes

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:a="http://www.w3.org/2005/Atom" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"
    xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"
    exclude-result-prefixes="a d m">

需要修改模板以根据元素所属的命名空间访问元素。

<xsl:for-each select="ml_root/a:entry/a:content/m:properties">

<xsl:value-of select="d:Code"/>
<xsl:value-of select="d:Name"/>

以下是完整的XSLT。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:a="http://www.w3.org/2005/Atom" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices"
    xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"
    exclude-result-prefixes="a d m">

    <xsl:output method="xml" indent="yes" />
    <xsl:strip-space elements="*" />

   <xsl:template match="/">
      <ROWS>
         <COMPANY_SITE_TAB>
            <xsl:for-each select="ml_root/a:entry/a:content/m:properties">
            <ROW>
               <COMPANY>TCO</COMPANY>
               <CONTRACT><xsl:value-of select="d:Code"/></CONTRACT>
               <COUNTRY>UNITED KINGDOM</COUNTRY>
               <DESCRIPTION><xsl:value-of select="d:Name"/></DESCRIPTION>
            </ROW>
            </xsl:for-each>
         </COMPANY_SITE_TAB>
      </ROWS>
   </xsl:template>
</xsl:stylesheet>

以下是输出。

<ROWS>
    <COMPANY_SITE_TAB>
        <ROW>
            <COMPANY>TCO</COMPANY>
            <CONTRACT>BLUE</CONTRACT>
            <COUNTRY>UNITED KINGDOM</COUNTRY>
            <DESCRIPTION>Blue Warehouse</DESCRIPTION>
        </ROW>
    </COMPANY_SITE_TAB>
</ROWS>