我正在使用 Orbeon Forms 解决方案从已填写的 Web 表单中生成消息。
我在 Orbeon 的 wiki 中阅读了有关从管道提交 XForms 的不同代码片段,我尝试了不同的解决方案,但它不起作用,并且没有示例来自管道的 POST,被 PFC 捕获并发送到 XForms 视图接收发布的数据(所有示例都在同一页面中完成)。
我在他的实例输入中收到了以下管道:
pipelineWrite.xpl
<p:config ...>
<p:param name="instance" type="input"/> <!-- instance containing the data of the form filled by user -->
<p:param name="data" type="output"/>
<p:processor name="oxf:java"> <!-- transforms the data into a file -->
<p:input name="config">
<config sourcepath="." class="ProcessorWriteCUSDECCD001B"/>
</p:input>
<p:input name="input" href="#instance"/>
<p:output name="output" id="file"/> <!-- XML containing the url of the file -->
</p:processor>
</p:config>
然后是捕捉动作的 PFC:
页面流.xml
<config xmlns="http://www.orbeon.com/oxf/controller">
<page path-info="/CUSDECCD001B/" view="View/ViewForm.xhtml"/> <!-- load the form to be filled in by user -->
<page path-info="/CUSDECCD001B/write" model="Controller/PipelineWrite.xpl"/> <!-- send the instance of the form filled to the pipeline above -->
<page path-info="/CUSDECCD001B/success" view="View/ViewSuccess.xhtml"/> <!-- send the instance containing the url of the file to the success view -->
<epilogue url="oxf:/config/epilogue.xpl"/>
</config>
然后是成功视图,非常简单:
查看成功.xhtml
<html ... >
<head>
<title>Generation OK</title>
<xforms:model>
<xforms:instance id="FILE" src="input:instance">
<files xmlns="">
<file mediaType="" filename="" size="" />
</files>
</xforms:instance>
</xforms:model>
</head>
<body>
Click here to download :
<xforms:output ref="//file" appearance="xxforms:download">
<xforms:filename ref="@filename"/>
<xforms:mediatype ref="@mediatype"/>
<xforms:label>Download</xforms:label>
</xforms:output>
</body>
</html>
我通过单击“ViewModify”页面中的“保存”按钮启动了所有这些过程:
ViewModify.xhtml
<xforms:model>
<xforms:instance id="CUSDECCD001B" src="../apps/CUSDECCD001B/Model/ModelCUSDECCD001B.xml" />
<xforms:submission id="save-submission" ref="instance('CUSDECCD001B')" action="/CUSDECCD001B/write" replace="instance" instance="CUSDECCD001BFile">
<xforms:send ev:event="xforms-submit-done" submission="send-to-success"/>
</xforms:submission>
<xforms:submission id="send-to-success" method="post" action="/CUSDECCD001B/success" ref="instance('CUSDECCD001BFile')" replace="all"/>
</xforms:model>
<!-- .... Content of XForms form -->
<xforms:submit submission="save-submission">
<xforms:label>Save</xforms:label>
</xforms:submit>
问题是帖子做得很好,PFC 很好地捕捉到了动作,加载了正确的视图,但是视图加载时没有数据(视图在他的实例输入上找不到数据)。
我尝试在视图中使用 GET 来检索 POST 数据,这也是同样的事情。未检索到任何数据。所以下载按钮不起作用。
我希望我足够清楚以找到解决方案。提前致谢。