如何通过 XSL 向 XML 添加元素 [英] How to add element to XML via XSL

查看:38
本文介绍了如何通过 XSL 向 XML 添加元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个简单的 XSL 文件,它对 XML 文件执行转换.现在,如果passed = true,fail = false,转换将返回True 或False(取决于测试结果).现在我想用这个值在我的 XML 中添加额外的标签我看过这篇 的帖子,并试图将其改编成我的问题,但它并没有完全奏效.

I have created a simple XSL file which performs transformation on XML file. Now the transformation returns True or False (depending on the result of the test) if passed = true, fail = false. Now i want to add extra tag into my XML with this values I have seen this post and tried to adapt this into my problem however it didn't quite work.

我的 xml 文件最初是这样的

My xml file initially looks like this

<?xml version="1.0" encoding="iso-8859-1"?>
<message>
  <unique-id>unique-id</unique-id>
  <payload>
      <Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://mappings.f4f.com/F4FXML/Schemas/v5/financial.xsd">
      <EnvelopeHeader>
          <SchemaVersion>5.1</SchemaVersion>
          <EnvelopeCreated>20140108</EnvelopeCreated>
          <EnvelopeTrackingID>1746978</EnvelopeTrackingID>
          <EnvelopeRevisionNumber>1</EnvelopeRevisionNumber>
          <SourcePartnerID>UK0000001088</SourcePartnerID>
          <SourceDivisionID>UK0000001088</SourceDivisionID>
          <DestinationPartnerID>ang</DestinationPartnerID>
          <DestinationDivisionID>9725652</DestinationDivisionID>
          <TestIndicator>True</TestIndicator>
      </EnvelopeHeader>
       <!--...... stuff totally irrelevant below-->
      </Envelope>
  </payload>
    <metadata>
        <metadata-element>
            <key>messageuniqueid</key>  
            <value>unique-id</value>
        </metadata-element>
        <metadata-element>
            <key>PostCode</key>
            <value>NR9 5BZ</value>
        </metadata-element>
    </metadata>
</message>

然后我运行一些转换文件来测试给定的元素值是否符合预期.我的输出消息应如下所示:

Then I run some transformation file that tests if a given value of element is as expected or not. My output message should look like this:

<message>
  <unique-id>unique-id</unique-id>
  <payload>Some gibberish here</payload>
    <metadata>
        <metadata-element>
            <key>messageuniqueid</key>  
            <value>unique-id</value>
        </metadata-element>
        <metadata-element>
            <key>PostCode</key>
            <value>NR9 5BZ</value>
        </metadata-element>
        <metadata-element>
            <key>TestResult</key>
            <value>True / False</value>
        </metadata-element>
    </metadata>
</message> 

我目前拥有的 XML 文件是这样的:

The XML file that I currently have is this:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<axsl:stylesheet xmlns:axsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:exsl="http://exslt.org/common" xmlns:msxsl="urn:schemas-microsoft-com:xslt" version="2.0">
   <axsl:output method="text"/>
   <axsl:template match="*|@*" mode="schematron-get-full-path">
      <axsl:apply-templates select="parent::*" mode="schematron-get-full-path"/>
      <axsl:text>/</axsl:text>
      <axsl:if test="count(. | ../@*) = count(../@*)">@</axsl:if>
      <axsl:value-of select="name()"/>
      <axsl:text>[</axsl:text>
      <axsl:value-of select="1+count(preceding-sibling::*[name()=name(current())])"/>
      <axsl:text>]</axsl:text>
   </axsl:template>
   <axsl:template match="/">
      <axsl:apply-templates select="/" mode="M0"/>
   </axsl:template>
   <axsl:template match="Envelope/EnvelopeHeader" priority="101" mode="M0">
      <axsl:choose>
         <axsl:when test="EnvelopeTrackingID = 1746978">
            <axsl:copy-of select="true()"/>
         </axsl:when>
         <axsl:otherwise>
            <axsl:copy-of select="false()"/>
         </axsl:otherwise>
      </axsl:choose>
      <axsl:apply-templates mode="M0"/>
   </axsl:template>
   <axsl:template match="text()" priority="-1" mode="M0"/>
   <axsl:template match="text()" priority="-1"/>
</axsl:stylesheet>

如您所见,我确实根据测试结果设置了 true/false,但现在如何将其添加到元数据元素标签中?作为键值?

As you can see I do set true / false depending on the test result but now how do I add this to the metadata-element tags ? as key value ?

谢谢

推荐答案

我决定从头开始编写一个样式表,因为您的 XSLT 充满了与您的问题无关并且只是令人困惑的功能.您的问题是如何在测试值后将 metadata-element 添加到输出中,这就是我在此处说明的内容.

I decided to write a stylesheet from scratch, since your XSLT is full of functionality that is irrelevant to your question and simply confusing. Your question is how to add a metadata-element to the output after testing for a value and that's what I illustrate here.

以下样式表执行身份转换,但有一个例外,即添加一个 metadata-element 元素.(顺便说一下,您可能需要重新考虑将元素命名为元素").

The following stylesheet performs an identity transform with one exception, namely adding a metadata-element element. (By the way, you might want to reconsider naming an element "element").

新的metadata-element的值取决于EnvelopeTrackingID的值.

样式表

<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

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

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

<xsl:template match="metadata">
  <xsl:copy>
     <xsl:apply-templates/>
     <metadata-element>
        <key>TestResult</key>
        <value>
           <xsl:choose>
              <xsl:when test="preceding-sibling::payload/Envelope/EnvelopeHeader/EnvelopeTrackingID = '1746978'">
                 <xsl:text>true</xsl:text>
              </xsl:when>
              <xsl:otherwise>
                 <xsl:text>false</xsl:text>
              </xsl:otherwise>
           </xsl:choose>
        </value>
     </metadata-element>
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>

输出

<?xml version="1.0" encoding="UTF-8"?>
<message>
 <unique-id>unique-id</unique-id>
 <payload>
  <Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:noNamespaceSchemaLocation="http://mappings.f4f.com/F4FXML/Schemas/v5/financial.xsd">
     <EnvelopeHeader>
        <SchemaVersion>5.1</SchemaVersion>
        <EnvelopeCreated>20140108</EnvelopeCreated>
        <EnvelopeTrackingID>1746978</EnvelopeTrackingID>
        <EnvelopeRevisionNumber>1</EnvelopeRevisionNumber>
        <SourcePartnerID>UK0000001088</SourcePartnerID>
        <SourceDivisionID>UK0000001088</SourceDivisionID>
        <DestinationPartnerID>ang</DestinationPartnerID>
        <DestinationDivisionID>9725652</DestinationDivisionID>
        <TestIndicator>True</TestIndicator>
     </EnvelopeHeader>
     <!--...... stuff totally irrelevant below-->
  </Envelope>
 </payload>
 <metadata>
    <metadata-element>
        <key>messageuniqueid</key>  
        <value>unique-id</value>
    </metadata-element>
    <metadata-element>
        <key>PostCode</key>
        <value>NR9 5BZ</value>
    </metadata-element>
  <metadata-element>
     <key>TestResult</key>
     <value>true</value>
  </metadata-element>
 </metadata>
</message>

这篇关于如何通过 XSL 向 XML 添加元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆