gpt4 book ai didi

xslt:进行否定选择的最简单方法是什么?

转载 作者:行者123 更新时间:2023-12-03 15:49:06 25 4
gpt4 key购买 nike

基本上我想要的是找到无法查找 ID 的所有节点(“断开的链接”):

<xsl:variable name="failedIDLookups" select="//inventory/box[@boxtypeID != //boxtypes/@ID]"/>

但这并没有按预期工作 - 我想语法是错误的,正确的做法应该是什么?

最佳答案

我怀疑你想要

<xsl:variable name="failedIDLookups" select="//inventory/box[not(@boxtypeID = //boxtypes/@ID)]"/>

然后可以使用键声明对其进行优化(作为 xsl:stylesheet 的子项)

<xsl:key name="boxtypes-ref" match="boxtypes" use="@ID"/>

<xsl:variable name="failedIDLookups" select="//inventory/box[not(key('boxtypes-ref', @boxtypeID))]"/>

关于xslt:进行否定选择的最简单方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53739886/

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