我正在创建一个小型 XForms 应用程序来帮助一些合作者创建复杂的元数据记录(TEI 标头)。我假设用户可能需要不止一个会话来完全填写项目请求的所有元数据。因此,我希望能够将表单数据保存到以项目特定标识符命名的文件中,然后允许返回用户从部分完成的表单列表中进行选择,将数据加载回编辑器并继续工作。不幸的是,我无法让加载功能按预期工作——也就是说,在我从列表中选择文件名后,我无法将保存的表单中的数据加载回编辑器。
以下是我模型中的实例:
<xf:instance id="itemMD" xmlns="http://www.tei-c.org/ns/1.0"
src="http://localhost:8080/exist/rest/db/home/sga/model.sga.metadata.xml"></xf:instance>
<xf:instance id="control-codes" xmlns="">
<data>
<boolean1>false</boolean1>
<output-filename>temp</output-filename>
<input-filename></input-filename>
</data>
</xf:instance>
<xf:instance id="file-utils" xmlns="http://exist.sourceforge.net/NS/exist" src="http://localhost:8080/exist/rest/db/home/sga/posted_data/"></xf:instance>
以下是提交元素:
<xf:submission id="save" method="put"
replace="none">
<xf:resource value="concat('http://localhost:8080/exist/webdav/db/home/sga/posted_data/', instance('control-codes')/output-filename)"></xf:resource>
</xf:submission>
<xf:submission id="load" method="get" replace="instance" instance="itemMD">
<xf:resource value="concat('http://localhost:8080/exist/webdav/db/home/sga/posted_data/', instance('control-codes')/input-filename)">
</xf:resource>
<xf:message ev:event="xforms-submit-error">Cannot load!</xf:message>
</xf:submission>
以下是文档正文中的相关小部件:
<div id="loader" class="span4 offset8">
<xf:select1 id="load-from-file" ref="instance('control-codes')/input-filename">
<xf:label>Choose file: </xf:label>
<xf:itemset nodeset="instance('file-utils')//exist:resource">
<xf:label ref="@name"></xf:label>
<xf:value ref="@name"></xf:value>
</xf:itemset>
</xf:select1>
<xf:submit submission="load">
<xf:label>Load</xf:label>
</xf:submit>
</div>
这是我第一次使用 XForms 进行认真的工作,所以也许这里有一些我应该能够修复的明显问题,但我很难过。(我也想知道我是否在这里传递了一个我应该传递 URI 的字符串?)。我正在使用 eXistDB 附带的 XSLTForms 处理器