0

使用 Orbeon Forms,我在 Form Builder 中创建了一个表单。由于 Orbeon Forms 使用 XForms,因此表单中的数据被捕获在 XML 文档中。该文档在保存时会发送到持久性 API,但在此之前我如何在浏览器上通过 JavaScript 访问它?

4

1 回答 1

1
  1. <fr:body>在 Form Builder 中,编辑源代码,并在元素内添加以下行,例如在第一行之前<fr:section>

    <xf:output value="saxon:serialize(/*, 'xml')" 
               id="my-xml" style="display: none"/>
    
  2. 在 JavaScript 中,您可以访问添加的my-xml控件的值:

    ORBEON.xforms.Document.getValue('my-xml')
    
于 2013-07-25T17:30:35.027 回答