计算两个节点之间的差异

发布于 2024-10-24 03:31:47 字数 496 浏览 1 评论 0原文

是否可以找到两个节点的差异并将该差异用作特定控制的约束。

<xforms:bind id="DebitRebate1"
    nodeset="instance('charge-options-setup')/Pattern_Setup1/Pattern1/DebitRebate1"
    type="xforms:double" 
    constraint=". &lt; instance('charge-options-setup')/Pattern_Setup1/Pattern1/DebitPrice1
                and instance('charge-options-setup')/Pattern_Setup1/Pattern1/DebitPrice1-. &gt;
                instance('charge-options-setup')/Locations_Patterns/Debit_Minimum_Margin"/>

Is it possible to find the difference two nodes and use the that difference as a constraint for a particular control.

<xforms:bind id="DebitRebate1"
    nodeset="instance('charge-options-setup')/Pattern_Setup1/Pattern1/DebitRebate1"
    type="xforms:double" 
    constraint=". < instance('charge-options-setup')/Pattern_Setup1/Pattern1/DebitPrice1
                and instance('charge-options-setup')/Pattern_Setup1/Pattern1/DebitPrice1-. >
                instance('charge-options-setup')/Locations_Patterns/Debit_Minimum_Margin"/>

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

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

发布评论

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

评论(1

糖果控 2024-10-31 03:31:47

是的,您可以使用两个节点之间的差异作为另一个节点的约束,并且您引用的代码似乎是正确的。只是几条评论:

  • 在您的 XPath 中,您可以只使用 lt而不是 <> >gt。这会执行值比较,并使表达式更易于阅读。
  • 另请确保名为:的节点周围有空格,而不是使用 DebitPrice1 - .,而不是 DebitPrice1-.。这是必要的,因为 - 可以用作元素或属性名称的一部分,因此 foo-bar 指向 不是 中的内容减去 中的内容。

Yes, you can use the difference between two nodes as a constraint on another node, and the code you quote seems about right. Just a couple of comments:

  • In your XPath, instead of < and > you can use just lt and gt. This performs a value comparison, and makes the expression easier to read.
  • Also make sure you have spaces around node named: instead of DebitPrice1-. use DebitPrice1 - .. This is necessary, as - can be used as part of an element or attribute name, so foo-bar point to <foo-bar> not what's in <foo> minus what's in <bar>.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文