使用XSLT将XML转换为JSON并删除命名空间

时间:2014-04-24 05:17:01

标签: xml json xslt namespaces

我是XSLT的新手。

我必须使用XSLT将XML转换为JSON。

我有以下xml:

<getEndUserCriteriaListForRangeResponse xmlns="http://xxxx.xxxx.xx.com/">
  <endUserCriteriaList>
    <ns0:endUserCriteria xmlns:ns0="http://xxxx.xxxx.xx.com">
      <ns0:defaultValue>
        <ns0:customValue>PARAMETER</ns0:customValue>
        <ns0:eucValue>PARAMETER</ns0:eucValue>
        <ns0:eucValueId>PARAMETER</ns0:eucValueId>
      </ns0:defaultValue>
      <ns0:eucId>PARAMETER</ns0:eucId>
      <ns0:label>PARAMETER</ns0:label>
      <ns0:ranges>
        <ns0:id>PARAMETER</ns0:id>
        <ns0:rangeName>PARAMETER</ns0:rangeName>
      </ns0:ranges>
      <ns0:status>PARAMETER</ns0:status>
      <ns0:unit>PARAMETER</ns0:unit>
      <ns0:values>
        <ns0:customValue>PARAMETER</ns0:customValue>
        <ns0:eucValue>PARAMETER</ns0:eucValue>
        <ns0:eucValueId>PARAMETER</ns0:eucValueId>
      </ns0:values>
      <ns0:weight>PARAMETER</ns0:weight>
    </ns0:endUserCriteria>
  </endUserCriteriaList>
</getEndUserCriteriaListForRangeResponse>

这是XSLT:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="xml" />
  <xsl:template match="/">
    <xsl:copy-of select="/*" />
  </xsl:template>
</xsl:stylesheet>

生成的JSON是:

{"@xmlns":"http://xxxx.xxxx.xx.com/","endUserCriteriaList":{"ns0:endUserCriteria":         {"@xmlns:ns0":"http://xxxx.xxxx.xx.com","ns0:defaultValue":{"ns0:customValue":"PARAMETER","ns0:eucValue":"PARAMETER","ns0:eucValueId":"PARAMETER"},"ns0:eucId":"PARAMETER","ns0:label":"PARAMETER","ns0:ranges":{"ns0:id":"PARAMETER","ns0:rangeName":"PARAMETER"},"ns0:status":"PARAMETER","ns0:unit":"PARAMETER","ns0:values":{"ns0:customValue":"PARAMETER","ns0:eucValue":"PARAMETER","ns0:eucValueId":"PARAMETER"},"ns0:weight":"PARAMETER"}}}

在生成的JSON中,我需要删除“ns0:”。 我该怎么做?

1 个答案:

答案 0 :(得分:2)

这是一个通用的XSLT,它可以从源文档中删除所有名称空间:

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

  <xsl:template match="@* | node()[not(self::*)]">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="*">
    <xsl:element name="{local-name()}">
      <xsl:apply-templates select="@* | node()" />
    </xsl:element>
  </xsl:template>

</xsl:stylesheet>

在输入上运行时,结果为:

<getEndUserCriteriaListForRangeResponse>
  <endUserCriteriaList>
    <endUserCriteria>
      <defaultValue>
        <customValue>PARAMETER</customValue>
        <eucValue>PARAMETER</eucValue>
        <eucValueId>PARAMETER</eucValueId>
      </defaultValue>
      <eucId>PARAMETER</eucId>
      <label>PARAMETER</label>
      <ranges>
        <id>PARAMETER</id>
        <rangeName>PARAMETER</rangeName>
      </ranges>
      <status>PARAMETER</status>
      <unit>PARAMETER</unit>
      <values>
        <customValue>PARAMETER</customValue>
        <eucValue>PARAMETER</eucValue>
        <eucValueId>PARAMETER</eucValueId>
      </values>
      <weight>PARAMETER</weight>
    </endUserCriteria>
  </endUserCriteriaList>
</getEndUserCriteriaListForRangeResponse>

我认为您的流程管道中有一些步骤会将其转换为您正在寻找的JSON。