ColdFusion - URL 中的 CFDOCUMENT 标题

ColdFusion - CFDOCUMENT Title in URL

我正在使用 ColdFusion cfdocument 标签创建 PDF 文档。工作正常,但不是在浏览器标题中显示文档名称 - 它显示我调用来创建 PDF 的 .cfc 文件。

我是这样称呼它的。

<cfdocument format="pdf" marginbottom=".5" margintop=".25" marginright=".5" marginleft=".5" saveAsName="#filename#.pdf">
     <cfdocumentitem type="footer">
          <p style="font-size:11px; text-align:right; font-style:italic;">Page #cfdocument.currentpagenumber# of #cfdocument.totalpagecount#</p>
     </cfdocumentitem>
     <html>
          <head><title>#filename#.pdf</title></head>
          <body><img src="file:///#application.tempFolder#\#thisFilename#" /></body>
     </html>
</cfdocument>

我到底错过了什么?为什么它仍然显示我在浏览器标题中调用的 filename.cfc 文件而不是我给 PDF 的文件名???

想通了。必须使用 CFDOCUMENT 创建文档,然后使用 CFPDF 标记向其添加 "Title" 属性。然后输出到浏览器。

<!--- Create the PDF --->
<cfdocument format="pdf" marginbottom=".5" margintop=".25" marginright=".5" marginleft=".5" filename="#application.tempFolder#\#thisSaveAsFilename#" overwrite="yes">
    <cfdocumentitem type="footer">
        <p style="font-size:11px; text-align:right; font-style:italic;">Page #cfdocument.currentpagenumber# of #cfdocument.totalpagecount#</p>
    </cfdocumentitem>
    <html>
        <head><title>#thisSaveAsFilename#</title></head>
        <body><img src="file:///#application.tempFolder#\#thisFilename#" /></body>
    </html>
</cfdocument>
<!--- Use CFPDF to add attributes to it --->
<cfset thisInfo = StructNew()>
<cfset thisInfo.Title = "pdf title goes here...">
<cfpdf action="setinfo" info="#thisInfo#" source="#application.tempFolder#\#thisSaveAsFilename#" />
<!--- Send it to the browser --->
<cfcontent file="#application.tempFolder#\#thisSaveAsFilename#" type="application/pdf" />A