在xslt / xpath中变量动态

时间:2015-11-10 09:48:45

标签: xml xpath dynamic var

我需要在代码中创建动态var。

<repeat ...>
.
.
.
    <div id="prixsejour"> <output ref="cart/priceTaxeSejourTotal-"/> </div>
</repeat>

当我在我的循环中时,我需要做一个&#34; up&#34;在每一轮。像这样:

<output ref="cart/priceTaxeSejourTotal-1"/>
<output ref="cart/priceTaxeSejourTotal-2"/>
<output ref="cart/priceTaxeSejourTotal-3"/>
.
.
.

你有个主意吗? 感谢

1 个答案:

答案 0 :(得分:1)

完成了!我不知道,我们可以在循环中添加索引。这是我的解决方案:

<repeat ...  index="cpt">
.
.
.
    <div id="prixsejour"> <output ref="cart/priceTaxeSejourTotal-${$cpt}"/> </div>
</repeat>