gpt4 book ai didi

xml - 检查祖先属性值是否是某个值

转载 作者:行者123 更新时间:2023-12-03 17:34:08 28 4
gpt4 key购买 nike

我有一种简单的布局,如下所示:

<SubSection filter="filter14, filter13, filter12">

<SubSection>
<para> test </para>
</SubSection>

<SubSection filter="filter1">
<Reviewer>John Smith</Reviewer>
</SubSection>
</SubSection>


我正在使用DocBook配置文件xsl的一部分来拉出,在这种情况下,具有filter ='filter14'的SubSection元素,但是,如果它们是祖先的元素,我也想拉出所有具有filter ='filter1'的元素。具有filter ='filter14'值的元素。

我正在使用以下测试,该测试适用于'filter1'值测试除外:

<!-- Copy all non-element nodes -->
<xsl:template match="@*|text()|comment()|processing-instruction()" node="profile">
<xsl:copy/>
</xsl:template>

<!-- Profile elements based on input parameters -->
<xsl:template match="*" mode="profile">

<!-- This is my input for a filter attribute RU -->
<xsl:variable name="filter.content">

<xsl:if test="@filter">
<xsl:call-template name="cross.compare">
<!-- <xsl:with-param name="a" select="$profile.filter"/> -->
<xsl:with-param name="a" select="'filter14'"/>
<xsl:with-param name="b" select="@filter"/>
</xsl:call-template>
</xsl:if>
</xsl:variable>
<xsl:variable name="filter.ok" select="not(@filter) or
$filter.content != '' or @filter = '' or (@filter = 'filter1' and contains(ancestor::SubSection[@filter], 'filter14'))"/>

<xsl:if test="$filter.ok">
<xsl:copy>
<xsl:apply-templates mode="profile" select="@*"/>

<xsl:apply-templates select="node()" mode="profile"/>
</xsl:copy>

</xsl:if>
</xsl:template>


cross.compare是:

 <!-- Returns non-empty string if list in $b contains one ore more values from list $a -->
<xsl:template name="cross.compare">
<xsl:param name="a"/>
<xsl:param name="b"/>
<xsl:param name="sep" select="$profile.separator"/>

<xsl:variable name="head" select="substring-before($b, $a)"/>

<xsl:variable name="tail" select="substring-after($b, $a)"/>
<xsl:if test="contains($b, $a)">1</xsl:if>

</xsl:template>


看来这只是在寻找正确的xpath来检查当前元素filter属性是否为'filter1'以及祖先SubSection元素filter属性是否包含'filter14'。我认为这会起作用,但事实并非如此。

我仍然使用'filter14'过滤器属性值来获取所有内容,并且所有不具有过滤器属性或过滤器属性值为''的元素,但没有任何具有过滤器属性值'filter1'的元素。

有人可以建议这里发生了什么吗?

谢谢,

拉斯

最佳答案

看起来这是您出错的地方:

contains(ancestor::SubSection[@filter], 'filter14')


这说:“查找具有 SubSection属性的第一个 @filter祖先,如果它包含'filter14'`,则产生 true

您需要的是:

ancestor::SubSection[contains(@filter, 'filter14')]


健壮的版本:

ancestor::SubSection[contains(concat('|', normalize-string(@filter), '|'), '|filter14|')]

关于xml - 检查祖先属性值是否是某个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30490980/

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