gpt4 book ai didi

xml - 我可以在 xsl for-each 中使用 'and' 运算符吗?

转载 作者:数据小太阳 更新时间:2023-10-29 01:43:06 25 4
gpt4 key购买 nike

我可以简单地在 xsl 中执行以下操作吗?

 <xsl:for-each select="trip/instance[.!=''] and trip/result[.!='']">
</xsl:for-each>

问:当我在 for-each 中使用 select=""时,它会改变我在 for-each 中使用的代码的选择器范围吗?

最佳答案

您可以在 for-each 循环中使用“and”,但不能按照您提到的方式使用(不确定您到底想要实现什么)

我假设你的要求是

1) 你想遍历Trip,它的两个子实体都是(instance and result) not null,在这种情况下你必须这样写..

<xsl:for-each select="trip[instance!='' and result!='']>

如果 instance 和 result 中的任何一个为 null,那么你的循环不会进入该元素,即 trip。


2) 您想遍历父级 trip 中的每个 instanceresult 子级,其值不为空。在这种情况下,您不需要 ..

<xsl:for-each select="trip/instance[.!=''] | trip/result[.!='']">

这会起作用。

现在回答你的问题..
使用 FOR-EACH 循环,您可以设置选择器的范围 ..
例如:在情况(1)中,选择器的范围是“root_name//trip”,在情况(2)中选择器的范围是“root_name//trip/instance”还有“root_name//trip/r​​esult”..

我希望,我正确理解了您的问题并以可以理解的方式回答了它..

关于xml - 我可以在 xsl for-each 中使用 'and' 运算符吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2219127/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com