0

我正在考虑将源输入 xml 转换为输出 xml 格式,具体取决于单个记录<Student><teacher>

输入 xml

<staff>
 <record>
    <Student>
      <field name="LastName">Dtext</field>
      <field name="FirstName"></field>
      <field name="Class">5</field>
      <field name="Email">Dtext-user33@nova.com</field>
   </Student>
</record>   
<record>   
   <Student>
    ....
   </Student>
</record> 
<record>
   <Teacher>
      <field name="LastName">Dtext-user35</field>
      <field name="FirstName"></field>
      <field name="Email">Dtext-user35@nova.com</field>
      <field name="Experience">10</field>
       <field name="Qualification"></field>
   </Teacher>
</record>
  ....
  ....

输出xml:

<input>
<add user="Student" >
  <add-value value-name="LastName">
    <value type="string">Dtext</value>
  </add-value>
  <add-value value-name="FirstName">
    <value type="string"></value>
  </add-value>
  <add-value value-name="class">
    <value type="string">5</value>
  </add-value>
  <add-value value-name="Email">
    <value type="string">Dtext-user33@novell.com</value>
  </add-value>
</add>

或者

<input>
<add user="Teacher" >
  <add-value value-name="LastName">
    <value type="string">Dtext-user35</value>
  </add-value>
  ....

下面是我目前正在工作的代码片段。由于某种原因,这不起作用。

<xsl:template match="/">
    <xsl:choose>
        <xsl:when test="staff">           
                 <xsl:for-each select="staff/record">
                    <xsl:when test="name(./*[1])= 'Student'">
                        <xsl:apply-template select = "Student"/>
                    </xsl:when>
                    <xsl:otherwise>
                         <xsl:apply-template select = "Teacher">
                    </xsl:otherwise>
                  </xsl:for-each>
        </xsl:when>
        <xsl:otherwise>
            <xsl:copy-of select="."/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>
<xsl:template match="Student">  
    <input> 
      <add user="Student">
        <xsl:for-each select="field[string()]">
         <xsl:variable name="fieldValue" select="normalize-space(.)"/>
         <add-value value-name="{@name}">
           <value type="string">
             <xsl:value-of select="$fieldValue"/>
           </value>
         </add-value>
       </xsl:for-each>
       </add>
    </input>
    </xsl:template>
</xsl:stylesheet>
<xsl:template match="Teacher">  
    <input> 
      <add user="Teacher">
        <xsl:for-each select="field[string()]">
         <xsl:variable name="fieldValue" select="normalize-space(.)"/>
         <add-value value-name="{@name}">
           <value type="string">
             <xsl:value-of select="$fieldValue"/>
           </value>
         </add-value>
       </xsl:for-each>
       </add>
    </input>
    </xsl:template>
</xsl:stylesheet>

需要对代码进行哪些更正才能使其正常工作..?

编辑:纠正了我代码中的所有愚蠢错误。但就输出而言仍然没有运气。

4

1 回答 1

0

好的,我终于有时间使用 Visual Studio 调试 XSLT(如果可以的话,我强烈建议您使用 XSLT 调试器)

这是您的 XSLT 文件的外观:

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
      <xsl:choose>
        <xsl:when test="staff">
          <xsl:for-each select="staff/record">
            <xsl:choose>
            <xsl:when test="name(./*[1])= 'Student'">
              <xsl:apply-templates select = "Student" />
            </xsl:when>
            <xsl:otherwise>
              <xsl:apply-templates select = "Teacher" />
            </xsl:otherwise>
            </xsl:choose>
          </xsl:for-each>
        </xsl:when>
        <xsl:otherwise>
          <xsl:copy-of select="."/>
        </xsl:otherwise>
      </xsl:choose>
  </xsl:template>
  <xsl:template match="Student">
    <input>
      <add user="Student">
        <xsl:for-each select="field[string()]">
          <xsl:variable name="fieldValue" select="normalize-space(.)"/>
          <add-value value-name="{@name}">
            <value type="string">
              <xsl:value-of select="$fieldValue"/>
            </value>
          </add-value>
        </xsl:for-each>
      </add>
    </input>
  </xsl:template>
  <xsl:template match="Teacher">
    <input>
      <add user="Teacher">
        <xsl:for-each select="field[string()]">
          <xsl:variable name="fieldValue" select="normalize-space(.)"/>
          <add-value value-name="{@name}">
            <value type="string">
              <xsl:value-of select="$fieldValue"/>
            </value>
          </add-value>
        </xsl:for-each>
      </add>
    </input>
  </xsl:template>
</xsl:stylesheet>

基本上,除了我在评论中告诉您的错误之外,您忘记将循环的 and 包装在元素<xsl:when>中。<xsl:otherwise>for-each<xsl:choose>

于 2013-04-02T10:22:46.383 回答