我需要将文件 xml 传输到 xfdf。我有两个元素类型代码和值的组。代码定义字段的名称,值是字段的值。XML源是这样的:
<urn:identifications>
<urn:identificationCode>dateOfBirth</urn:identificationCode>
<urn:identificationValue>25021965</urn:identificationValue>
<urn:identificationCode>ičdph</urn:identificationCode> <!-- IC DPH -->
<urn:identificationValue>1234567890</urn:identificationValue>
<urn:identificationCode>ičo_sk</urn:identificationCode> <!-- ICO (SK) -->
<urn:identificationValue>0987654333</urn:identificationValue>
<urn:identificationCode>ic</urn:identificationCode> <!-- ICO (CZ) -->
<urn:identificationValue>0987654321</urn:identificationValue>
...
</urn:identifications>
我需要 XSLT 到 XFDF 这样的东西。
<identifications>
<field name="dateOfBirth">
<value>25021965</value>
</field>
<field name="ičdph">
<value>1234567890</value>
</field>
<field name="ičo_sk">
<value>0987654333</value>
</field>
<field name="ic">
<value>0987654321</value>
</field>
...
</identifications>
我需要使用什么?如何?每个组?或 som 套?非常感谢。