Treballar amb atributs de node XML en XSLT
Si utilitza XML i XSL, a continuació, que podria haver arribat a través d'un temps, quan s'ha de jugar una mica amb els atributs i valors dels nodes XML que XSL. Són un munt de llocs amb informació sobre aquest llarg alè, però no vaig trobar van ser breus i precisos ... Això no és una TUTORIAL XML / XSL, però el meu intent de posar en conjunt-una mena de llista de trucs ...
El XML d'exemple que treballarem amb aquest aspecte ...
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="food.xsl"?>
<food>
<fruits type="tropical">
<item name="mango" moreinfo="http://www.mango.com">Mango is the king of fruits</item>
<item name="banana" moreinfo="http://www.banana.com">Banana once a day , keeps the doctor away</item>
<item name="orange" moreinfo="http://www.orange.com">Orange is the color and rich in vitamin C</item>
<item name="Papaya" moreinfo="http://www.papaya.com">Papaya - Hot when raw, cold when ripe</item>
</fruits>
</food>
Així que començarem a transformar la nostra per sobre de XML amb XSL
Exemple 1: Visualització de valor en un atribut seleccionat
<xsl:value-of select="/food/fruits/item[@name='orange']" /><br />
to get more information about <a href="{/food/fruits/item[@name='orange']/@moreinfo}" target="new" ><xsl:value-of select="/food/fruits/item[@name='orange']/@name" /> </a>
Resultat HTML es veurà així
Orange is the color and rich in vitamin C,
to get more information about <a href="http://www.orange.com" target="new">
Exemple 2: a través de bucle i la visualització de tots els noms d'atributs XML i els seus valors
<xsl:for-each select="/food/fruits/item/@*">
attribute name : <xsl:value-of select="name()"/>,
attribute value : <xsl:value-of select="."/> <br />
</xsl:for-each>
Resultat HTML es veurà així
attribute name : name, attribute value : mango
attribute name : moreinfo, attribute value : http://www.mango.com
attribute name : name, attribute value : banana
attribute name : moreinfo, attribute value : http://www.banana.com
attribute name : name, attribute value : orange
attribute name : moreinfo, attribute value : http://www.orange.com
attribute name : name, attribute value : Papaya
attribute name : moreinfo, attribute value : http://www.papaya.com
Descarregar tots els arxius anteriors aquí (249 descàrregues)
Miri aquest espai, seguiré actualitzant aquest amb els nous descobriments ...










































