我正在尝试构建“全部打印”功能,以便用户可以一次打印所有已完成的文档,而不是逐个打印。我试图使用cfinclude迭代他们需要打印的所有表单,但只有一个文档呈现(第一个)。这是我试过的代码。
<cfset URL.CFGRIDKEY = 5777 />
<cfinclude template="/note/sp_printform.cfm" />
<cfset URL.p = 160 />
<cfset URL.ref = 71 />
<cfinclude template="path/to/pdf.cfm" />
使用ColdFusion可以实现这一切吗?两个包含的文件都采用以下格式。我试图只使用以前创建的cfdocuments来避免双重维护表单
<cfdocument format="pdf" >
<cfdocumentsection>
<cfdocumentitem type="footer">
<!--- footer content --->
</cfdocumentitem>
<!--- form content --->
</cfdocumentsection>
</cfdocument>