如何使用 xforms:submission 标签提交多个表单数据实例

发布于 2024-10-31 00:04:10 字数 671 浏览 0 评论 0原文

我想在提交表单时提交两个不同的表单数据实例。

我尝试了以下方法,但它对我不起作用。

 <xforms:submission id="save-instance-to-client" 
            ref="instance('form-instance-customer') instance('form-instance-customer-address')"
            action="/exist/rest/db/orbeon/data.xml"
            method="put" 
            validate="false"
            replace="none">
            <xforms:message ev:event="xforms-submit" level="modal">Attempting to save</xforms:message>
            <xforms:message ev:event="xforms-submit-error" level="modal">An error occurred while saving!</xforms:message>
  </xforms:submission>

请建议一些提交多个实例的方法。

I would like to submit two different form data instance when i submit the form.

I tried the following it did not work for me.

 <xforms:submission id="save-instance-to-client" 
            ref="instance('form-instance-customer') instance('form-instance-customer-address')"
            action="/exist/rest/db/orbeon/data.xml"
            method="put" 
            validate="false"
            replace="none">
            <xforms:message ev:event="xforms-submit" level="modal">Attempting to save</xforms:message>
            <xforms:message ev:event="xforms-submit-error" level="modal">An error occurred while saving!</xforms:message>
  </xforms:submission>

Please suggest some way to submit multiple instances.

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

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

发布评论

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

评论(1

岛歌少女 2024-11-07 00:04:10

按照您使用它的方式, 正在执行 XML 文档的 PUT。如果您要发送 2 个 XML 文档,您将不再发送 XML,因为 XML 需要一个根节点。因此,您有几种选择:

  1. 进行 2 次提交,每次提交一个实例,然后按顺序运行它们。
  2. 添加围绕两个提交的根注释,其中: ref="xxforms:element('root', (instance('form-instance-customer'), instance('form-instance-customer-address' )))”。您可以在 xxforms:element() 函数。在本例中,它将创建一个元素

The way you are using it, the <xforms:submission> is doing a PUT of an XML document. If you were to send 2 XML documents, you wouldn't be sending XML anymore, as XML requires one root node. So you have a couple of alternatives:

  1. Do 2 submissions, each submitting one instance, and run them in sequence.
  2. Add a root note that wraps around the two submissions, with: ref="xxforms:element('root', (instance('form-instance-customer'), instance('form-instance-customer-address')))". You specify the name of the root element in the first attribute of the xxforms:element() function. In this case, it will create an element <root>.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文