使用XSLT循环遍历XML元素并调用另一个xsl

时间:2014-02-19 07:40:35

标签: xml xslt xslt-1.0 transformation

我使用XSL转换循环遍历不同的XML元素。以下是我的示例xml:

<?xml version="1.0" encoding="UTF-8"?>    
<Alerts>    
      <AlertType>
         <AlertTypeOne>
            <NewAlert></NewAlert>
         </AlertTypeOne>                
      </AlertType>

      <AlertType>
         <AlertTypeTwo>
            <NewerAlert></NewerAlert>
         </AlertTypeTwo>            
      </AlertType>

      <AlertType>
         <AlertTypeThree>
            <OldAlert></OldAlert>
         </AlertTypeThree>              
      </AlertType>
</Alerts>

以下是我的xslt:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="/">
        <html>
            <body>
                <h1>Alerts</h1>
                <table>
                    <tr>
                        <td>Credit Monitoring Activity</td>
                    </tr>
                    <tr>
                        <td>Lorem ipsum <br/>
                            <xsl:for-each select="//Alerts/AlertType">
                                <!--logic -->
                            </xsl:for-each></td>
                    </tr>
                </table>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>

我正在迭代不同的AlertType标签。 AlertType标签可能包含不同的xmls(彼此不相关),基于标签内的第一个元素,我想调用适当的xsl文件并将xml内容传递给它(就像java中的方法调用一样)。

目前,我无法访问AlertType标记的直接子节点,更不用说匹配它了。任何人都可以请求如何访问子节点?此外,基于匹配结果(使用每个)我想调用不同的xslts。知道怎么做吗?

修改 的 由于xml包含不同警报的信息,我想显示一个包含多个表的HTML文件(每个警报一个表)。 根据标签中的不同数据,列的名称和值可能不同。

这就是HTML的样子:

信用监控活动

AlertTypeOne
姓名地址城市州

数据数据数据

AlertTypeTwo

资格指定角色

数据数据

AlertTypeThree

信用卡借记

数据数据

2 个答案:

答案 0 :(得分:2)

您询问的是解决方案,而不是确定您要解决的问题(请参阅元here上的“XY”帖子)。

xsl:for-each在许多地方都不合适,而且程序员经常会误用它。相反,你应该采用功能范式。使用xsl:templatexsl:apply-templates被认为是一种功能性方法。

在您的情况下,没有必要使用xsl:for-each。而是为输入XML中的元素编写单独的模板。例如,从以下开始:

修改

作为对您的修改的回复:

  

我想显示一个包含多个表的HTML文件(每个警报一个表)。

然后,在模板中包含<table>以匹配各个警报(我编辑了代码)。

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

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

    <xsl:template match="/">
        <html>
            <body>
                <h1>Alerts</h1>
                <xsl:apply-templates/>
            </body>
        </html>
    </xsl:template>

然后,为AlertsAlertType等编写模板:

<xsl:template match="Alerts|AlertType">
    <xsl:apply-templates/>
</xsl:template>

<xsl:template match="AlertTypeOne">
    <table>
       <!--Decide what to do with this element here-->
    </table>
</xsl:template>

不幸的是,你没有透露出你想要输出HTML的样子。

答案 1 :(得分:1)

  

基于标签内的第一个元素,我想调用适当的xsl   文件

我认为您不需要单独的XSL 文件;您可以根据其子元素将不同的模板(在同一样式表中)应用于不同的AlertType元素。以下样式表将为每个AlertType元素创建一个表,然后应用适当的模板来构造表的结构(以及内容,如果有的话):

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes"/>

<xsl:template match="/">
<html>
<body>
    <h1>Alerts</h1>
    <xsl:for-each select="Alerts/AlertType">
        <table>
            <xsl:apply-templates/>
        </table>
    </xsl:for-each>
</body>
</html>
</xsl:template>

<xsl:template match="AlertTypeOne">
    <tr>
        <th>Name</th>
        <th>Address</th>
        <th>City</th>
        <th>State</th>
    </tr>
    <tr>
        <td><!--logic --></td>
        <td><!--logic --></td>
        <td><!--logic --></td>
        <td><!--logic --></td>
    </tr>
</xsl:template>

<xsl:template match="AlertTypeTwo">
    <tr>
        <th>Qualification</th>
        <th>Designation</th>
        <th>Role</th>
    </tr>
    <tr>
        <td><!--logic --></td>
        <td><!--logic --></td>
        <td><!--logic --></td>
    </tr>
</xsl:template>

<xsl:template match="AlertTypeThree">
    <tr>
        <th>Credit</th>
        <th>Debit</th>
    </tr>
    <tr>
        <td><!--logic --></td>
        <td><!--logic --></td>
    </tr>
</xsl:template>

</xsl:stylesheet>

应用于您的示例输入:

<?xml version="1.0" encoding="UTF-8"?>    
<Alerts>    
      <AlertType>
         <AlertTypeOne>
            <NewAlert></NewAlert>
         </AlertTypeOne>                
      </AlertType>

      <AlertType>
         <AlertTypeTwo>
            <NewerAlert></NewerAlert>
         </AlertTypeTwo>            
      </AlertType>

      <AlertType>
         <AlertTypeThree>
            <OldAlert></OldAlert>
         </AlertTypeThree>              
      </AlertType>
</Alerts>

收到以下输出:

<?xml version="1.0" encoding="utf-8"?>
<html>
   <body>
      <h1>Alerts</h1>
      <table>
         <tr>
            <th>Name</th>
            <th>Address</th>
            <th>City</th>
            <th>State</th>
         </tr>
         <tr>
            <td/>
            <td/>
            <td/>
            <td/>
         </tr>                
      </table>
      <table>
         <tr>
            <th>Qualification</th>
            <th>Designation</th>
            <th>Role</th>
         </tr>
         <tr>
            <td/>
            <td/>
            <td/>
         </tr>            
      </table>
      <table>
         <tr>
            <th>Credit</th>
            <th>Debit</th>
         </tr>
         <tr>
            <td/>
            <td/>
         </tr>              
      </table>
   </body>
</html>