gpt4 book ai didi

xml - 使用 XSL 合并 XML 文件会删除匹配的元素

转载 作者:数据小太阳 更新时间:2023-10-29 02:34:38 26 4
gpt4 key购买 nike

我一直致力于使用 XSL 合并 XML 文件,但遇到了问题。

我希望将新的 xml 插入到 <Shapes></Shapes> 中的元素正在被删除并引入了一个新的不需要的元素。

这是我正在使用的 XSL:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
extension-element-prefixes="msxsl" >

<xsl:output method="xml" indent="yes" />

<xsl:template match="@*|node()">

<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>

</xsl:template>

<xsl:template match="Shapes">
<xsl:for-each select="document('..\TempReportData\TextXML_Output.xml')/Job/Benchtops/Benchtop">
<xsl:copy>
<xsl:apply-templates select="document('..\DesignMaster\EmptyShapeElement.xml')" />
</xsl:copy>
</xsl:for-each>
</xsl:template>

这是第一个 XML 文件:

<?xml version="1.0"?>
<EXPORT>
<CAM>
<Version V="3_0_0">
<Project Computer_Name="CW032" User_Name="Sflores">
<!--Offer-->
<Offer Code="J021368">
<!--Client-->
<Customer Code="8"/>
<!--Top-->
<Top Id="1">
<Shapes>
</Shapes>
<Texts>
</Texts>
<TextsLav>
<!--Working Texts-->
</TextsLav>
<Dimensions>
</Dimensions>
<FreeElements>
<!--Elementi senza assegnazione-->
</FreeElements>
</Top>
</Offer>
</Project>
</Version>
</CAM>
</EXPORT>

这是第二个 XML 文件:

<?xml version="1.0"?>
<Job>
<Job_Number>B90512</Job_Number>
<Job_Address></Job_Address>
<Benchtops>
<Benchtop>
<Cabinet_Type>Benchtop</Cabinet_Type>
<Page>Page 1</Page>
<Room>Kitchen</Room>
<Top_number>TOP(2257)</Top_number>
<Length>2641mm</Length>
<Width>800mm</Width>
<Width2>2641mm</Width2>
</Benchtop>
<Benchtop>
<Cabinet_Type>Benchtop</Cabinet_Type>
<Page>Page 1</Page>
<Room>Kitchen</Room>
<Top_number>TOP(2260)</Top_number>
<Length>2772mm</Length>
<Width>600mm</Width>
<Width2>2772mm</Width2>
</Benchtop>
</Benchtops>
</Job>

这是我需要插入的 XML:

             <!--Shape-->
<Shape Id="1">
<!--Material-->
<Material Class_Code="MATCL010006"/>
<Principal_Structure Id="1">
<!--Polygon-->
</Principal_Structure>
<LayerTexts>
<!--Texts for material and thickness-->
</LayerTexts>
</Shape>

我得到的结果是:

<?xml version="1.0"?>
<EXPORT>
<CAM>
<Version V="3_0_0">
<Project Computer_Name="CW032" User_Name="Sflores">
<!--Offer-->
<Offer Code="B90512">
<!--Client-->
<Customer Code="8"></Customer>
<!--Top-->
<Top Id="1">
<Benchtop>
<!--Shape-->
<Shape Id="1">
<!--Material-->
<Material Class_Code="MATCL010006"></Material>
<Principal_Structure Id="1">
<!--Polygon-->
</Principal_Structure>
<LayerTexts>
<!--Texts for material and thickness-->
</LayerTexts>
</Shape>
</Benchtop>
<Benchtop>
<!--Shape-->
<Shape Id="1">
<!--Material-->
<Material Class_Code="MATCL010006"></Material>
<Principal_Structure Id="1">
<!--Polygon-->
</Principal_Structure>
<LayerTexts>
<!--Texts for material and thickness-->
</LayerTexts>
</Shape>
</Benchtop>
<Texts></Texts>
<TextsLav>
<!--Working Texts-->
</TextsLav>
<Dimensions></Dimensions>
<FreeElements>
<!--Elementi senza assegnazione-->
</FreeElements>
</Top>
</Offer>
</Project>
</Version>
</CAM>

注意 <Shapes></Shapes>现在缺少元素和<Benchtop></Benchtop>已插入元素。

输出应该是这样的:

<?xml version="1.0"?>
<EXPORT>
<CAM>
<Version V="3_0_0">
<Project Computer_Name="CW032" User_Name="Sflores">
<!--Offer-->
<Offer Code="B90512">
<!--Client-->
<Customer Code="8"></Customer>
<!--Top-->
<Top Id="1">
<Shapes>
<!--Shape-->
<Shape Id="1">
<!--Material-->
<Material Class_Code="MATCL010006"></Material>
<Principal_Structure Id="1">
<!--Polygon-->
</Principal_Structure>
<LayerTexts>
<!--Texts for material and thickness-->
</LayerTexts>
</Shape>
<!--Shape-->
<Shape Id="1">
<!--Material-->
<Material Class_Code="MATCL010006"></Material>
<Principal_Structure Id="1">
<!--Polygon-->
</Principal_Structure>
<LayerTexts>
<!--Texts for material and thickness-->
</LayerTexts>
</Shape>
</Shapes>
<Texts></Texts>
<TextsLav>
<!--Working Texts-->
</TextsLav>
<Dimensions></Dimensions>
<FreeElements>
<!--Elementi senza assegnazione-->
</FreeElements>
</Top>
</Offer>
</Project>
</Version>
</CAM>

非常感谢任何帮助。

最佳答案

问题出在模板匹配Shapes

<xsl:template match="Shapes">
<xsl:for-each select="document('..\TempReportData\TextXML_Output.xml')/Job/Benchtops/Benchtop">
<xsl:copy>
<xsl:apply-templates select="document('..\DesignMaster\EmptyShapeElement.xml')" />
</xsl:copy>
</xsl:for-each>
</xsl:template>

特别是 xsl:copy 的位置。在 xsl:for-each 中,您已经更改了上下文,现在位于 Benchtop 元素上。因此,xsl:copy 将复制该基准元素。

您需要将 xsl:copy 移到 xsl:for-each 之外,因此它会根据需要复制 Shapes 元素

<xsl:template match="Shapes">
<xsl:copy>
<xsl:for-each select="document('..\TempReportData\TextXML_Output.xml')/Job/Benchtops/Benchtop">
<xsl:apply-templates select="document('..\DesignMaster\EmptyShapeElement.xml')" />
</xsl:for-each>
</xsl:copy>
</xsl:template>

关于xml - 使用 XSL 合并 XML 文件会删除匹配的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30777019/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com