我们的 Rails Web 应用程序使用 wkhtmltopdf 生成 PDF 并将它们发送给客户端。这适用于我们测试过的所有网络浏览器,除了 Edge。
我们尝试以几种不同的方式呈现响应,最初是这样的:
kit = PDFKit.new(@html_content)
render text: kit.to_pdf, content_type: 'application/pdf'
这将打开 PDF 查看器,在我们测试的每个浏览器中都可以正确显示 PDF,但浏览器显示的 Edge 除外:某些东西使此 PDF 无法打开。
在我们的应用程序日志中,有一个 POST 请求,它是表单提交,我可以看到我们的应用程序发送 pdf 文件响应,然后对表单提交 url 有后续 GET 请求,这是错误的,因为它不期望对该 url 有任何 GET 请求. 我不知道这里发生了什么。
请求的响应标头是:
Cache-Control: max-age=0, private, must-revalidate
Connection: Keep-Alive
Content-Length: 34865
Content-Type: application/pdf; charset=utf-8
Date: Thu, 18 Jun 2015 14:35:30 GMT
Etag: "4baf297d1866339e60e8e893300909a0"
Server: WEBrick/1.3.1 (Ruby/2.0.0/2013-06-27)
Set-Cookie: _APP_session=<long cookie>; path=/; HttpOnly
X-Request-Id: 617580a8-4d7d-43c4-8e49-aeaeafba7b79
X-Runtime: 21.868098
X-XSS-Protection: 1; mode=block
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
x-ua-compatible: chrome=1
我也试过send_data
这样使用:
send_data kit.to_pdf, type: 'application/pdf', disposition: 'inline'
这会导致以下响应标头,但最终会出现相同的问题:
Cache-Control: private
Connection: Keep-Alive
Content-Disposition: inline
Content-Length: 34866
Content-Transfer-Encoding: binary
Content-Type: application/pdf
Date: Thu, 18 Jun 2015 14:39:42 GMT
Etag: "11db49f1a26444a38fa2b51f3c3336ed"
Server: WEBrick/1.3.1 (Ruby/2.0.0/2013-06-27)
Set-Cookie: _APP_session=<long cookie>; path=/; HttpOnly
X-Request-Id: 501d9832-b07e-4764-8ecc-f1c1e9a6421e
X-Runtime: 7.054236
X-XSS-Protection: 1; mode=block
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
x-ua-compatible: chrome=1
如果我Content-Disposition: inline
从上面删除标题,它会显示保存文件提示并且下载文件工作正常。不过,我们需要将其加载到浏览器窗口中。
我不相信它是这个问题的重复,因为它适用于 IE 9、10 和 11,并且只是 Edge 的问题。