如何将xsl样式表从一个xsl导入或包括到另一个xsl?

时间:2019-04-07 18:49:47

标签: xml xslt

如何将xsl样式表从一个xsl导入或包括到另一个xsl

这是我的代码

Employee.xml

<?xml version = "1.0"?>  
<?xml-stylesheet type = "text/xsl" href = "employee.xsl"?>   
<class>   
   <employee id = "016">  
      <firstname>Aryan</firstname>   
      <lastname>Gupta</lastname>   
      <linkurl>https://www.aryanguptan.com/external</linkurl>   
      <salary>30000</salary>  
   </employee>   
        <employee id = "080">   
      <firstname>Sam</firstname>   
      <lastname>Alex</lastname>   
      <linkurl>/user/internal/080</linkurl>   
      <salary>10000</salary>   
   </employee>  
   <employee id = "024">   
      <firstname>Sara</firstname>   
      <lastname>Khan</lastname>   
      <linkurl>http://www.sarakhan.com</linkurl>   
      <salary>25000</salary>  
   </employee>   
    <employee id = "092">   
      <firstname>John</firstname>   
      <lastname>Samuel</lastname>   
      <linkurl>/user/internal/092</linkurl>   
      <salary>10000</salary>   
   </employee> 
   <employee id = "056">   
      <firstname>Peter</firstname>   
      <lastname>Symon</lastname>   
      <linkurl>www.petersymon.com</linkurl>   
      <salary>10000</salary>   
   </employee>    
</class> 

这是此代码的xsl表

Employee.xsl

   
<xsl:stylesheet version = "1.0" xmlns:xsl = "http://www.w3.org/1999/XSL/Transform">  
 <xsl:import href="globaVar.xsl" />     
   <xsl:template match = "/">      
    <xsl:apply-imports/>   
      <html>   
         <body>   
            <h2>Employee </h2>   
            <table border = "1">   
               <tr bgcolor = "pink">   
                  <th>ID</th>   
                  <th>First Name</th>   
                  <th>Last Name</th>   
                  <th>Link URL</th>   
                  <th>Salary</th>   
               </tr>           
               <xsl:for-each select = "class/employee">                                 
                     <tr>   
                        <td><xsl:value-of select = "@id"/></td>   
                        <td><xsl:value-of select = "firstname"/></td>   
                        <td><xsl:value-of select = "lastname"/></td>  
                        <xsl:variable name="linkurl" select="linkurl" />
                        <xsl:choose> 
                            <xsl:when test="$lookup/tld[starts-with($linkurl, .)]">
                                <td><a href="{linkurl}" target="_blank"><xsl:value-of select = "linkurl"/></a></td>
                            </xsl:when>
                            <xsl:otherwise>
                                <td><a href="www.google.com/{linkurl}"><xsl:value-of select = "concat('www.google.com/',linkurl)"/></a></td>
                            </xsl:otherwise>
                        </xsl:choose>                            
                        <td><xsl:value-of select = "salary"/></td>  
                     </tr>                        
               </xsl:for-each>         
            </table>   
         </body>   
      </html>  
   </xsl:template>    
</xsl:stylesheet>       

在这里,我正在尝试将此代码(GlobalVar.xsl)导入其他xsl工作表,以实现可重复使用的目的

GlobalVar.xsl

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template name="linkURLTemplate">
    <xsl:variable name="tlds">
          <tld>http://</tld>
          <tld>https://</tld>
          <tld>www.</tld>      
       </xsl:variable>         
       <xsl:variable name="lookup" select="document('')//xsl:variable[@name='tlds']"/>   
  </xsl:template>
</xsl:stylesheet>   

但是当我尝试运行employee.xml时,出现此错误

“ XSLT转换期间发生错误:发生未知错误()”

你能告诉我我做错了什么吗?

1 个答案:

答案 0 :(得分:2)

样式表中有两个错误:

  1. 您在Employee.xsl中的子样式表名称错误。所以换行

    <xsl:import href="globaVar.xsl" />     
    

    <xsl:import href="GlobalVar.xsl" />     
    
  2. 在子样式表GlobalVar.xsl中,您没有在顶层定义变量,而是在模板中定义了变量。但是,您必须在顶层定义它们才能在其他模板中使用它们。因此,从xsl:template中删除GlobalVar.xsl如下:

    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    
        <xsl:variable name="tlds">
            <tld>http://</tld>
            <tld>https://</tld>
            <tld>www.</tld>      
        </xsl:variable>    
    
        <xsl:variable name="lookup" select="document('')/xsl:stylesheet/xsl:variable[@name='tlds']"/>   
    
    </xsl:stylesheet>  
    

    在这里,我还将lookup变量的定义更改为

    <xsl:variable name="lookup" select="document('')/xsl:stylesheet/xsl:variable[@name='tlds']"/> 
    

    可以更直接地访问此变量。

现在您的样式表应该可以正常工作了。