【发布时间】: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>
【问题讨论】: