读取 XBL 组件的子元素并构造 xpath

发布于 2024-10-03 03:38:05 字数 1106 浏览 2 评论 0 原文

这是我的测试组件



我必须读取 XBL 中实例属性的值。我正在做如下。


或者

我必须连接实例名称和 xpath 来读取值,这是我需要帮助的地方。

我可以像我一样读取 xpath,然后将其与上面的变量连接起来

。 avt='{/*/fr:constraint/@xpath}'" />

我将得到一堆我想重复的元素

<代码>

连接字符串来创建 xpath 并在重复中使用它是问题所在。有什么想法吗?

This is my test component

<fr:mycomponent name="test">
<fr:constraint instance="myinstance" xpath="item/@id" />
</fr:mycomponent>

I have to read the value of instance attribute in XBL. I am doing as follows.

<xsl:value-of select="./fr:constraint/@instance" />
or
<xxforms:variable name="instance" select="xxforms:evaluate-avt='{/*/fr:constraint/@instance}'" />

I have to concat the instance name and xpath to read the values which is where I need help.
<xxforms:variable name="instance" select="concat('instance(''', xxforms:evaluate-avt='{/*/fr:constraint/@instance}'", ''')' />

I can read xpath in the same way as I did for instance and then concat it with the above variable.

<xxforms:variable name="xpath" select="xxforms:evaluate-avt='{/*/fr:constraint/@xpath}'" />
<xxforms:variable name="nodeset" select="concat($instance, '/', $xpath)" />

I will get a bunch of elements which I would like to repeat

<xforms:repeat nodeset="$nodeset">
<xforms:output value="." />
<xforms:repeat/>

Concatenating strings to create xpath and using it in repeat is where the problem is. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

断爱 2024-10-10 03:38:05

这取决于/*/fr:constraint/@instance的内容:

  1. 如果它是AVT,那么是的,使用xxforms:evaluate-avt()是去。
  2. 但是,也许您可​​以将其设为 XPath 表达式,而不是 AVT,然后您可以编写:

    
    
  3. 如果它是实例 id,这似乎是基于您的情况例如,那么您可以按如下方式声明 XForms 变量。 AVT 由 XSLT 解释,因此 XForms 看到的是 select="instance('myinstance')"

    
    

It depends on content of /*/fr:constraint/@instance:

  1. If it is an AVT, then yes, using xxforms:evaluate-avt() is the way to go.
  2. However, maybe you could make that an XPath expression, instead of an AVT, and then you could just write:

    <xxforms:variable name="instance"
                      select="{/*/fr:constraint/@instance}"/>
    
  3. If it is an instance id, which seems to be the case based on your example, then you'd declare your XForms variable as follows. The AVT is interpreted by XSLT, so what XForms sees is select="instance('myinstance')".

    <xxforms:variable name="instance" 
                      select="instnce('{/*/fr:constraint/@instance}')"/>
    
渔村楼浪 2024-10-10 03:38:05

事实上 xxforms:evaluate-avt 有效。这是我的应用程序中的缓存问题。这是后续问题。

XSLT

XForms

这是正确的访问方式吗xforms 中的变量?有更好的办法吗?

In fact xxforms:evaluate-avt worked. It was a caching issue in my app. Here is the followup question.

XSLT
<xsl:value-of select="./fr:constraint/@instance" />

XForms
<xxforms:variable name="instance" select="xxforms:evaluate-avt='{/*/fr:constraint/@instance}'" />

Is this the right way to access the variable in xforms? Is there a better way?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文