1

我正在更改我的代码以在 XForms 中使用绑定(这比在任何地方都使用节点集更好!)但是我遇到了错误。

我收到的错误消息是:“错误:XForms 错误 (8):id (data_criterion) 没有引用绑定元素...”

从我一直在使用的教程/指南来看,这似乎应该有效,但显然我错过了一些东西!(顺便说一句,我在此处的示例之后对绑定代码进行建模:http ://en.wikibooks.org/wiki/XForms/Bind )

我最初认为问题是由于我使用的是 xf:select 控件而不是 xf:input 之类的示例,但即使我将代码简化为最简单的代码,我仍然会收到错误消息!

这是我正在使用的模型代码:

 <xf:model id="select_data">

     <xf:instance id="criteria_data" xmlns="">
         <file>
             <criteria>
                 <criterion></criterion>
             </criteria>
         </file>
     </xf:instance>

     <bind id="data_criterion" nodeset="instance('criteria_data')/criteria/criterion"/>

</xf:model>

至于ui代码,这就是我所拥有的:

<xf:input bind="data_criterion">
    <xf:label>Enter criteria:</xf:label>
</xf:input>

我收到的错误消息是:“错误:XForms 错误 (8):id (data_criterion) 没有引用绑定元素...”

任何人都知道问题是什么?此外,我应该注意绑定和 xf:select(带有 xf:itemset)控件的任何特殊用法吗?(我最终在我的表单上使用了很多 xf:select 控件..)

提前致谢!

编辑:

我通过这个验证器运行代码,我收到了这条消息(指的是绑定行):“警告:以下元素是否应该应用 XForms 命名空间?:绑定(第 66 行)”

4

1 回答 1

2

您可能想要更改的几件事:

  1. 不确定这是错误的原因,但nodeset表达式应该是instance('criteria_data')/criteria/...,没有file。记住:instance()返回根元素,而不是文档节点。(您通过更新问题来照顾这个问题;好)
  2. xfbind. 应该是:<xf:bind id="data_criterion" nodeset="instance('criteria_data')/criteria/criterion"/>

请参阅下面的完整示例代码,在 Orbeon Forms 下对我来说效果很好:

<xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml"
      xmlns:xforms="http://www.w3.org/2002/xforms"
      xmlns:xf="http://www.w3.org/2002/xforms"
      xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
      xmlns:ev="http://www.w3.org/2001/xml-events"
      xmlns:xs="http://www.w3.org/2001/XMLSchema"
      xmlns:fr="http://orbeon.org/oxf/xml/form-runner">
    <xhtml:head>
        <xhtml:title>SO Bind</xhtml:title>
        <xf:model id="select_data">

            <xf:instance id="criteria_data" xmlns="">
                <file>
                    <criteria>
                        <criterion>Gaga</criterion>
                    </criteria>
                </file>
            </xf:instance>
            <xf:bind id="data_criterion" nodeset="instance('criteria_data')/criteria/criterion"/>
       </xf:model>

    </xhtml:head>
    <xhtml:body>
        <xf:input bind="data_criterion">
            <xf:label>Enter criteria:</xf:label>
        </xf:input>
    </xhtml:body>
</xhtml:html>
于 2010-06-04T01:21:00.920 回答