我需要将XML源代码转换为指定的JSON格式。为此,我需要删除头节点,保留数组体并封装在方括号中[ ]
。我已经转换了正文,但在删除头节点和插入封装方括号[ ]
时遇到了问题。
这是我收到的XML格式:
<?xml version="1.0" encoding="UTF-8"?>
<ns1:DDMRP_Parts xmlns:ns1="urn:za.sabmiller.com:supplychain:3rdp:transdata">
<Part>
<PartNumber>000096</PartNumber>
<Location>A000</Location>
<Description>TEST OF RAMIS</Description>
<UnitOfMeasure>EA</UnitOfMeasure>
<PartType>1</PartType>
<FixedLeadTime>1</FixedLeadTime>
<MaterialType>Filling & Mixing Eq</MaterialType>
</Part>
<Part>
<PartNumber>000096</PartNumber>
<Location>A000</Location>
<Description>TEST OF RAMIS</Description>
<UnitOfMeasure>EA</UnitOfMeasure>
<PartType>1</PartType>
<FixedLeadTime>1</FixedLeadTime>
<MaterialType>Filling & Mixing Eq</MaterialType>
</Part>
</ns1:DDMRP_Parts>
我已经尝试使用SAP PI上提供的适配器来进行转换,但这不能满足完整的阵列体。我尝试过使用XSLT重新格式化,但我没有正确地删除外部节点并使用方括号[ ]
进行封装。
这是我的XSLT:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">{
<xsl:apply-templates select="*"/>}
</xsl:template>
<!-- Object or Element Property-->
<xsl:template match="*">
"<xsl:value-of select="name()"/>" : <xsl:call-template name="Properties"/>
</xsl:template>
<!-- Array Element -->
<xsl:template match="*" mode="ArrayElement">
<xsl:call-template name="Properties"/>
</xsl:template>
<!-- Object Properties -->
<xsl:template name="Properties">
<xsl:variable name="childName" select="name(*[1])"/>
<xsl:choose>
<xsl:when test="not(*|@*)">"<xsl:value-of select="."/>"</xsl:when>
<xsl:when test="count(*[name()=$childName]) > 1">{ "<xsl:value-of select="$childName"/>" :[<xsl:apply-templates select="*" mode="ArrayElement"/>] }</xsl:when>
<xsl:otherwise>{
<xsl:apply-templates select="@*"/>
<xsl:apply-templates select="*"/>
}</xsl:otherwise>
</xsl:choose>
<xsl:if test="following-sibling::*">,</xsl:if>
</xsl:template>
<!-- Attribute Property -->
<xsl:template match="@*">"<xsl:value-of select="name()"/>" : "<xsl:value-of select="."/>",
</xsl:template>
这就是我目前正在生产的:
{
"ns1:DDMRP_Parts" : { "Part" :[{
"PartNumber" : "000096",
"Location" : "A000",
"Description" : "TEST OF RAMIS",
"UnitOfMeasure" : "EA",
"PartType" : "1",
"FixedLeadTime" : "1",
"MaterialType" : "Filling & Mixing Eq"
},{
"PartNumber" : "000096",
"Location" : "A000",
"Description" : "TEST OF RAMIS",
"UnitOfMeasure" : "EA",
"PartType" : "1",
"FixedLeadTime" : "1",
"MaterialType" : "Filling & Mixing Eq"
}] }}
这就是我需要输出的内容:
[{
"PartNumber" : "000096",
"Location" : "A000",
"Description" : "TEST OF RAMIS",
"UnitOfMeasure" : "EA",
"PartType" : "1",
"FixedLeadTime" : "1",
"MaterialType" : "Filling & Mixing Eq"
},{
"PartNumber" : "000096",
"Location" : "A000",
"Description" : "TEST OF RAMIS",
"UnitOfMeasure" : "EA",
"PartType" : "1",
"FixedLeadTime" : "1",
"MaterialType" : "Filling & Mixing Eq"
}]
1条答案
按热度按时间f3temu5u1#
我建议你这样试试:
XSLT 1.0**
P.S.空格字符是可选的,可以在不影响JSON结果有效性的情况下删除。