Darbs ar XML mezglu atribūtus XSLT
Ja jūs izmantojat XML un XSL, tad jūs varētu būt saskārušies ar laiku, kad jums ir spēlēt aptuveni ar atribūtiem un vērtībām XML mezglu jums XSL. Tie ir kravas vietām ar ilgu aizdusu info par šo, bet neviens man konstatēja bija īsi un precīzi ... Tas NAV XML / XSL TUTORIAL, bet mans mēģinājums likt-kopā kaut kādas apkrāptu sarakstā ...
Paraugs XML ka mēs strādājam ar izskatās šādi ...
<?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>
Tātad Lets sākt pārveidot mūsu iepriekš XML izmantojot XSL
Piemērs 1: Parādīts vērtībā pie izvēlētā īpašības
<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 rezultāts izskatīsies
Orange is the color and rich in vitamin C,
to get more information about <a href="http://www.orange.com" target="new">
Piemērs 2: looping caur un parādot visus XML atribūtu nosaukumus un to vērtības
<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 rezultāts izskatīsies
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
Lejupielādēt visus iepriekš minētos failus šeit (243 downloads)
Noskatīties šajā vietā, es ņemšu glabāt atjaunināšanu šis ar jauniem secinājumiem ...










































