【问题标题】:Transforming child elements to attributes of the parent将子元素转换为父元素的属性
【发布时间】:2015-02-13 16:59:57
【问题描述】:

我想将 JOB_NUMBER 字段和 ORDERPK 字段转换为“订单”节点的属性,请有人告诉我如何?

我有以下 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>

【问题讨论】:

    标签: xml xslt transform


    【解决方案1】:

    离你不远了。从一个身份模板开始,它只是将所有内容复制到输出树。然后,为这个基本的、不分青红皂白的复制过程中定义的所有例外添加更具体的模板。

    第一个模板匹配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 中,有一个从未使用过的命名空间声明:

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

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

    【讨论】:

    • 完美,谢谢!你是对的,我不需要任何其他字段移动到属性。这是所有用于第三方数据导入的,所以谢谢你!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2012-04-19
    • 1970-01-01
    • 1970-01-01
    • 2017-06-17
    • 2011-09-29
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多