Przewodnik: używanie funkcji XSLT IntelliSense
W tym przewodniku pokazano, jak używać funkcji IntelliSense XSLT do automatycznego uzupełniania niektórych atrybutów.
Aby użyć funkcji IntelliSense w atrybucie name elementu xsl:with-param i xsl:call-template
Utwórz nowy plik XSLT i skopiuj go w następującym kodzie:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <!-- These 2 elements effectively assign $messages = resources/en.xml/<messages>, then $messages is used in the "localized-message" template. --> <xsl:param name="lang">en</xsl:param> <xsl:variable name="messages" select="document(concat('resources/', $lang, '.xml'))/messages"/> <xsl:template name="msg23" match="msg23"> </xsl:template> <xsl:template name="localized-message"> <xsl:param name="msgcode"/> <!-- Show message string. --> <xsl:message terminate="yes"> <xsl:value-of select="$messages/message[@name=$msgcode]"/> </xsl:message> </xsl:template> </xsl:stylesheet>
Wstaw kursor po
<xsl:template name="msg23" match="msg23">
i naciśnij klawisz Enter. Następnie zacznij wpisywać następującyxsl:call-template
element:<xsl:call-template name="localized-message"> </xsl:call-template>
Lista nazw szablonów jest wyświetlana w
name=""
atrybuciexsl:call-template
elementu podczas wpisywania.Wstaw kursor po
<xsl:call-template name="localized-message">
i naciśnij klawisz Enter. Następnie zacznij wpisywać następującyxsl:with-param
element:<xsl:with-param name="msgcode">msg23</xsl:with-param>
Lista nazw parametrów jest wyświetlana w atrybucie
name=""
xsl:with-param
elementu.
Aby użyć funkcji IntelliSense w atrybucie mode elementu xsl:apply-templates
Utwórz nowy plik XSLT i skopiuj go w następującym kodzie:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="/"> <HTML> <BODY> <TABLE> <xsl:apply-templates select="customers/customer"> <xsl:sort select="state"/> <xsl:sort select="name"/> </xsl:apply-templates> </TABLE> </BODY> </HTML> </xsl:template> <xsl:template match="customer"> <TR> <xsl:apply-templates select="name" /> <xsl:apply-templates select="address" /> <xsl:apply-templates select="phone" /> </TR> </xsl:template> <xsl:template match="name"> <TD STYLE="font-size:14pt font-family:serif"> <xsl:apply-templates /> </TD> </xsl:template> <xsl:template match="address"> <TD> <xsl:apply-templates /> </TD> </xsl:template> <xsl:template match="phone"> <TD> <xsl:apply-templates /> </TD> </xsl:template> <xsl:template match="phone" mode="accountNumber"> <xsl:param name="Area_Code"/> <TD STYLE="font-style:italic"> 1-<xsl:value-of select="."/>-001 </TD> </xsl:template> </xsl:stylesheet>
Wstaw kursor po
<xsl:apply-templates select="phone" />
i naciśnij klawisz Enter. Następnie zacznij wpisywać następującyxsl: apply-templates
element:<xsl:apply-templates select="phone" mode="accountNumber">
Lista trybów szablonu jest wyświetlana w
mode=""
atrybuciexsl:apply-templates
elementu.
Aby użyć funkcji IntelliSense w atrybutach stylesheet-prefix i result-prefix elementu xsl:namespace-alias
Utwórz nowy plik XSLT i skopiuj go w następującym kodzie:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:alt="http://www.w3.org/1999/XSL/Transform-alternate" version="1.0"> <xsl:param name="browser" select="'InternetExplorer'"/> <xsl:template match="/"> <alt:stylesheet> <xsl:choose> <xsl:when test="$browser='InternetExplorer'"> <alt:import href="IERoutines.xsl"/> <alt:template match="/"> <div> <alt:call-template name="showTable"/> </div> </alt:template> </xsl:when> <xsl:otherwise> <alt:import href="OtherBrowserRoutines.xsl"/> <alt:template match="/"> <div> <alt:call-template name="showTable"/> </div> </alt:template> </xsl:otherwise> </xsl:choose> </alt:stylesheet> </xsl:template> </xsl:stylesheet>
Wstaw kursor po
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:alt="http://www.w3.org/1999/XSL/Transform-alternate" version="1.0">
i naciśnij klawisz Enter. Następnie zacznij wpisywać następującyxsl:namespace-alias
element:<xsl:namespace-alias stylesheet-prefix="alt" result-prefix="xsl"/>
Zwróć uwagę, że lista prefiksów jest wyświetlana w
stylesheet-prefix
atrybutachxsl:namespace-alias
iresult-prefix
elementu .