32

これら 2 つのテンプレートの違いは何ですか?

<xsl:template match="node()">

<xsl:template match="*">
4

3 に答える 3

44
<xsl:template match="node()">

は次の略語です。

<xsl:template match="child::node()">

the child::これは、 axisを介して選択できる任意のノード タイプと一致します

  • エレメント

  • テキストノード

  • 処理命令 (PI) ノード

  • コメントノード。

反対側

<xsl:template match="*">

は次の略語です。

<xsl:template match="child::*">

これは任意の要素に一致します

XPath 式: someAxis::* は、指定された軸のプライマリ ノード タイプの任意のノードに一致します。

child::軸のプライマリ ノード タイプはelementです

于 2012-08-22T12:30:31.243 に答える
17

違いの1つを説明するために、つまり*一致しませんtext

与えられたxml:

<A>
    Text1
    <B/>
    Text2
</A>

マッチングnode()

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

    <!--Suppress unmatched text-->
    <xsl:template match="text()" />

    <xsl:template match="/">
        <root>
            <xsl:apply-templates />
        </root>
    </xsl:template>

    <xsl:template match="node()">
        <node>
            <xsl:copy />
        </node>
        <xsl:apply-templates />
    </xsl:template>
</xsl:stylesheet>

与える:

<root>
    <node>
        <A />
    </node>
    <node>
        Text1
    </node>
    <node>
        <B />
    </node>
    <node>
        Text2
    </node>
</root>

マッチング*

<xsl:template match="*">
    <star>
        <xsl:copy />
    </star>
    <xsl:apply-templates />
</xsl:template>

テキストノードと一致しません。

<root>
  <star>
    <A />
  </star>
  <star>
    <B />
  </star>
</root>
于 2012-08-22T11:35:54.937 に答える
2

他の一致パターンについては、 XSL xsl:template match="/"も参照してください。

于 2012-08-22T10:54:59.560 に答える