Delo z vozlišče atributi XML v XSLT
Če uporabljate XML in XSL, morda pa ste naleteli v času, ko je igral z atributi in vrednot XML vozlišč v vas XSL. So obremenitve strani z dolgo daha informacij o tem, vendar nobena ni bila sem našel kratek in natančen ... To ni XML / XSL TUTORIAL, ampak moj poskus, da bi dal, skupaj neke vrste goljufija seznamu ...
Vzorec XML, da bomo delo z izgleda takole ...
<?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>
Torej Lets začeli preobrazbo našega nad XML z uporabo XSL
Primer 1: Prikaz vrednosti na izbran Attribute
<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>
HTML rezultat bo izgledal
Orange is the color and rich in vitamin C,
to get more information about <a href="http://www.orange.com" target="new">
Primer 2: zanka skozi vse XML in prikazovanje imena atributov in njihove vrednosti
<xsl:for-each select="/food/fruits/item/@*">
attribute name : <xsl:value-of select="name()"/>,
attribute value : <xsl:value-of select="."/> <br />
</xsl:for-each>
HTML rezultat bo izgledal
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
Prenesite vse zgoraj navedene datoteke tukaj (243 prenosov)
Oglejte si ta prostor, bom to vodi posodabljanje z novimi ugotovitvami ...










































