gpt4 book ai didi

xslt - 在 xslt 中,选择带有 id 的项,该值在变量中

转载 作者:行者123 更新时间:2023-12-04 04:45:28 25 4
gpt4 key购买 nike

我有项目 ID 作为变量。在应用模板中,我想选择具有此 ID 的项目。我该怎么做?我试过这个,但它不起作用:

<xsl:variable name="myid"> 
<xsl:value-of select="sc:fld('Field',.,'id')"/> -//(this is Item ID)
</xsl:variable>
<xsl:apply-templates mode="summary" select="sc:item('$myid',.)" />

提前致谢。

最佳答案

您不应将变量引用括在引号中:

<xsl:apply-templates mode="summary" select="sc:item($myid,.)" />

另请注意,您可以像这样直接设置变量的值:
<xsl:variable name="myid" select="sc:fld('Target',.,'id')"/> 

关于xslt - 在 xslt 中,选择带有 id 的项,该值在变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18254687/

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