📜  XSLT元素

📅  最后修改于: 2020-12-26 06:47:30             🧑  作者: Mango

XSLT元件

XSLT元素用于指定分配给XML文档中特定元素的命名名称/值对。该密钥与XPath表达式中的key()函数一起使用,以访问XML文档中分配的元素。

 

参数说明

Index Name Description
1) Name It specifies the name of the key to be used.
2) Match It specifies that the pattern must be matched to a node that holds this key.
3) Use It specifies XPath expression to identify the value of the nodes of xml document.

XSLT元素示例

让我们举个例子,通过遍历每个雇员,创建一个具有其属性“ id”及其子元素“ ”,“ ”,“ ”和“ ”的元素表。本示例将作为名字的密钥检查为员工的名字之一,然后打印员工的详细信息。

Employee.xml



 
   
      Aryan 
      Gupta 
      Raju 
      60000
    
    
      Sonam 
      Gupta 
      Vinni 
      45000
    
    
      Peter 
      Symon 
      John 
      20000 
    

员工.xsl

 
     
     
        
         >  
            

Employee

>
ID > First Name Last Name Nick Name Salary
>

输出: