我想制作一个表格,其中我将制作一个无序列表,其中包含酒店名称和星级数,如下所示:
酒店
·马库亚 (4)
·富恩特维诺 (2)
· 特萨拉索斯 (3)
使用此代码:
<vacaciones>
<destino identificador="p023">
<estancias>
<hotel estrellas="4">Macuya</hotel>
</estancias>
</destino>
<destino identificador="m036">
<estancias>
<hotel estrellas="2">Fuentevino</hotel>
<hotel estrellas="3">Tresarazos</hotel>
</estancias>
</destino>
</vacaciones>
我在 eXide 中尝试过此操作,但名称组合在一起时没有空格,并且未显示星星的数量:
<table>
<tr>
<th>Hoteles</th>
</tr>
{for $i in doc("/db/exercise/vacaciones.xml")//destino
return
<tr>
<td>
<ul>
<li>
{$i/estancias/hotel/text()} ({$i/estancias/hotel/@estrellas/text()})
</li>
</ul>
</td>
</tr>
}
</table>
慕工程0101907
蝴蝶刀刀
相关分类