I am new in Xslt so i'm little bit confuse about the 2 tags,
<xsl:apply-templates name="nodes"> and <xsl:call-template select="nodes">.
So can you list out the difference between them? Thanks in advance.
|
I am new in Xslt so i'm little bit confuse about the 2 tags,
So can you list out the difference between them? Thanks in advance. |
|||
|
|
You can define functions in XSLT, like this simple one that outputs a string.
This function can be called via
This way you give up a little control to the XSLT processor - not you decide where the program flow goes, but the processor does by finding the most appropriate match for the node it's currently processing. If multiple templates can match a node, the one with the more specific match expression wins. If more than one matching template witch the same specificity exist, the one declared last wins. You can concentrate more on developing templates and need less time to do "plumbing". Your programs will become more powerful and modularized, less deeply nested and faster (as XSLT processors are optimized for template matching). A concept to understand with XSLT is that of the "current node". With This is the basic difference. There are some other aspects of templates that affect their behavior: Their |
|||||||||||||
|
|
To add to the good answer by @Tomalak: Here are some unmentioned and important differences:
The FXSL library's implementation of higher-order functions (HOF) in XSLT wouldn't be possible if XSLT didn't have the Summary: Templates and the Reference: See this whole thread: http://www.stylusstudio.com/xsllist/200411/post60540.html |
|||
|
|
|
apply-templates is usually (but not necessarily) used to process all or a subset of children of the current node with all applicable templates. This supports the recursiveness of XSLT application which is matching the (possible) recursiveness of the processed XML. call-template on the other hand is much more like a normal function call. You execute exactly one (named) template, usually with one or more parameters. So I use apply-templates if I want to intercept the processing of an interesting node and (usually) inject something into the output stream. A typical (simplified) example would be
whereas with call-template I typically solve problems like adding the text of some subnodes together, transforming select nodesets into text or other nodesets and the like - anything you would write a specialized, reusable function for. Edit: As an additional remark to your specific question text: <xsl:call-template name="nodes"/> calls a template which is named "nodes" (<xsl:template name="nodes">...</xsl:template>). <xsl:apply-templates select="nodes"/> applies all templates to all children of your current XML node whose name is "nodes". That's a completely different semantic. |
||||
|
|
|
The functionality is indeed similar (apart from the calling semantics, where However, the parser will not execute the same way. From MSDN:
|
|||
|
|