gpt4 book ai didi

xml - 将子元素转换为父元素的属性

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

我想将 JOB_NUMBER 字段和 ORDERPK 字段转换为“order”节点的属性,有人可以告诉我怎么做吗?

我有以下 XML;

<?xml version="1.0" encoding="UTF-8"?>
<dataroot
xmlns:od="urn:schemas-microsoft-com:officedata" generated="2014-12-15T14:45:35">
<order>
<ORDERPK>2</ORDERPK>
<JOB_x0020_NUMBER>S019191-9</JOB_x0020_NUMBER>
<job_description>TESTDATA</job_description>
<order_qty>1900</order_qty>
<finishing_style>PB</finishing_style>
<depth>10</depth>
<width>8</width>
<cover_pagination>4</cover_pagination>
<text_pagination>12</text_pagination>
<delivery_commence_date>15/12/2014</delivery_commence_date>
<delivery_complete_date>15/12/2014</delivery_complete_date>
<job_site>DG</job_site>
<managing_printer>DG</managing_printer>
<is_managing_printer>TRUE</is_managing_printer>
<cust_order_ref>776031</cust_order_ref>
<cust_code>Test</cust_code>
<site_cce_name>Jamie</site_cce_name>
<site_cce_email>JamesBrace@dstoutput.co.uk</site_cce_email>
<sales_person_name>Jamie Brace</sales_person_name>
<sales_person_email>JamesBrace@dstouput.co.uk</sales_person_email>
</order>
</dataroot>

这就是我希望我的数据的样子;

<order JOB_NUMBER="S019191-9" ORDERPK="2">
<job_description>TESTDATA</job_description>
etc.

到目前为止,这是我提出的 XSLT,但老实说,我根本不熟悉 XML 或 XSLT。

<?xml version="1.0" encoding="UTF‐8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes" method="xml" />
<xsl:template match="/order">
<root>
<xsl:apply-templates select="order" />
</root>
</xsl:template>

<xsl:template match="order">
<order JOB_x0020_NUMBER="{@JOB_x0020_NUMBER}">
<xsl:value-of select="order" />
</order>
</xsl:template>
</xsl:stylesheet>

最佳答案

你离得不远。从一个身份模板开始,它只是将所有内容复制到输出树。然后,为您要定义到这个基本的、不加选择的复制过程的所有异常添加更具体的模板。

第一个模板匹配 order 并输出一个带有两个新属性的新 order 元素。它们的值是使用属性值模板 检索的。但是,现在表示为属性的两个元素不应出现在输出中。因此,第二个模板匹配它们并且什么也不做。

从您的问题中不清楚您是否希望完整保留 order 的所有其余子元素,但我认为这就是您想要的。

样式表

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

<xsl:strip-space elements="*"/>

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

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

<xsl:template match="order">
<order JOB_NUMBER="{JOB_x0020_NUMBER}" ORDERPK="{ORDERPK}">
<xsl:apply-templates/>
</order>
</xsl:template>

<xsl:template match="JOB_x0020_NUMBER | ORDERPK"/>

</xsl:stylesheet>

XML 输出

<dataroot xmlns:od="urn:schemas-microsoft-com:officedata" generated="2014-12-15T14:45:35">
<order JOB_NUMBER="S019191-9" ORDERPK="2">
<job_description>TESTDATA</job_description>
<order_qty>1900</order_qty>
<finishing_style>PB</finishing_style>
<depth>10</depth>
<width>8</width>
<cover_pagination>4</cover_pagination>
<text_pagination>12</text_pagination>
<delivery_commence_date>15/12/2014</delivery_commence_date>
<delivery_complete_date>15/12/2014</delivery_complete_date>
<job_site>DG</job_site>
<managing_printer>DG</managing_printer>
<is_managing_printer>TRUE</is_managing_printer>
<cust_order_ref>776031</cust_order_ref>
<cust_code>Test</cust_code>
<site_cce_name>Jamie</site_cce_name>
<site_cce_email>JamesBrace@dstoutput.co.uk</site_cce_email>
<sales_person_name>Jamie Brace</sales_person_name>
<sales_person_email>JamesBrace@dstouput.co.uk</sales_person_email>
</order>
</dataroot>

顺便说一下,在您的 XML 中,有一个从未使用过的 namespace 声明:

xmlns:od="urn:schemas-microsoft-com:officedata"

您可能希望将其从结果中排除。如果您可以使用 XSLT 2.0,则可以为此使用 copy-namespaces="no"。在 XSLT 1.0 中,您必须 mimic copy-namespaces .

关于xml - 将子元素转换为父元素的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27486743/

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