我在XForms文档中有一个绑定,如下所示:
<xforms:bind id="fr-form-binds" nodeset="instance('fr-form-instance')">
<xforms:bind id="section-1-bind" nodeset="section-1">
<xforms:bind id="age-bind" name="age" nodeset="age" />
<xforms:bind id="first-name-bind" nodeset="first-name"
name="first-name"
constraint="instance('fr-form-resources')//resource/section-1/first-name/alert/@show = false()" />
</xforms:bind>
我们可以通过其id和更改约束属性以编程方式访问(通过XPath或其他)绑定,以便不需要像first-name-bind中那样编写约束并以编程方式更新fr - 形式资源?