XSLT xsl:sequence. What is it good for..?

后端 未结 4 611
北恋
北恋 2020-12-24 05:28

I know the following question is a little bit of beginners but I need your help to understand a basic concept.

I would like to say first that I\'m a XSLT programmer

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-24 06:16

    The most common use case for xsl:sequence is to return a result from xsl:function.

    
      
    
    

    But it can also be handy in other contexts, for example

    
      
        
           
        
        
           
        
      
    
    

    The key thing here is that it returns references to the original nodes, it doesn't make new copies.

提交回复
热议问题