3
我不確定如何解決這個問題,因爲我對XSLT非常陌生。XSLT橫穿
我使用的是xsl:for-each
循環通過Types
,這是很好的,但是當我在這個循環(型)怎麼會用在TypeCode
屬性我選擇Rate
?我是否認爲選擇只有當時我所處的每一個範圍?可能還有很多包包元素。
<Bags>
<Bag>
<Types>
<Type TypeCode="DBL">
<Description Name="BLAH">
<Text>BLAH</Text>
<Image/>
</Description>
</Type>
<Type TypeCode="JRS">
<Description Name="BLAH">
<Text>BLAH BLAH</Text>
<Image/>
</Description>
</Type>
</Types>
<Plans>
<Plan PlanCode="DISC" PlanName="Best rate">
<Description Name="Best rate">
<Text>Best available rate</Text>
</Description>
</Plan>
<Plan PlanCode="NOCC" PlanName="No CC Required">
<Description Name="No CC Required">
<Text>Rate- No CC Required</Text>
</Description>
</Plan>
</Plans>
<Rates>
<Rate TypeCode="DBL" PlanCode="DISC">
<Rates>
<Rate>
<Base AmountBeforeTax="0" CurrencyCode="EUR"/>
</Rate>
</Rates>
</Rate>
<Rate TypeCode="JRS" PlanCode="DISC">
<Rates>
<Rate>
<Base AmountBeforeTax="0" CurrencyCode="EUR"/>
</Rate>
</Rates>
</Rate>
</Rates>
</Bag>
</Bags>
乾杯對於快速響應,理解 – DazzlaJ
@DazzlaJ:我很高興這個答案對你有用。您能否請*接受*(通過點擊答覆旁邊的複選標記)? –
我只能說我已經注意到隨着時間的推移,Dimitre真的「得到」這個XSLT的東西:)並提供了很好的答案。查看他的答案列表! –