gpt4 book ai didi

javascript - 使用 JS 消费 Rails send_data 响应

转载 作者:行者123 更新时间:2023-12-03 00:09:04 26 4
gpt4 key购买 nike

我有一个连接到 Rails API 后端的 VueJS 前端。

在其中一个端点中,我正在使用 WickedPDF生成 PDF。当我在浏览器中打开 URL 本身时,PDF 可以正常下载并且完全按照预期工作。当我通过 Vue 发送请求时,API 会返回一个看起来很奇怪的字符串,如下所示:

%PDF-1.4
1 0 obj
<<
/Title (��)
/Creator (��wkhtmltopdf 0.12.4)
/Producer (��Qt 4.8.7)
/CreationDate (D:20190222102025+02'00')
>>
endobj
3 0 obj
<<
/Type /ExtGState
/SA true
/SM 0.02
/ca 1.0
/CA 1.0
/AIS false
...

我不太确定这是什么数据类型?我最初认为它可能是一个 BLOB,但我不知道。我遵循概述的逻辑here解析来 self 的rails api的响应,它确实将PDF下载到chrome。打开此 PDF 时,它是空白的,并且 Chrome 浏览器顶部的文件名是奇怪字符的组合。这让我认为我没有以正确的方式转换响应,并且最终发生了一些编码问题。

这是我的 Rails API 代码:

def pdf
pdf_html = ActionController::Base.new.render_to_string(
template: 'api/v1/exporters/pdf',
layout: 'pdf',
page_size: 'A4',
formats: :html,
encoding: 'utf8',
margin: {
top: 20,
left: 20,
}
)
pdf = WickedPdf.new.pdf_from_string(pdf_html)
send_data(
pdf,
filename: 'download.pdf',
type: 'application/pdf',
disposition: 'attachment'
)
end

这是上面链接中的 JS 函数。我将 Rails 响应主体(当控制台记录时,第一个代码块中看起来很奇怪的字符集)作为唯一的参数传递:

showFile(blob){
var newBlob = new Blob([blob], {type: "application/pdf"})

if (window.navigator && window.navigator.msSaveOrOpenBlob) {
window.navigator.msSaveOrOpenBlob(newBlob);
return;
}

const data = window.URL.createObjectURL(newBlob);
var link = document.createElement('a');
link.href = data;
link.download="file.pdf";
link.click();
setTimeout(function(){
window.URL.revokeObjectURL(data);
, 100}
}

任何人都可以帮助我指出正确的方向,如何以正确的方式进行配置或如何以不同/更好的方式进行配置?即使确认响应的数据类型也可能对我有帮助。

最佳答案

如果您使用axios对于API调用,您可以指定客户端以blob形式下载数据。

import axios from 'axios';

axios
.request({
url: '/api-url-to-download-pdf',
responseType: 'blob',
})
.then(response => response.data)
.then(blob => {
const data = URL.createObjectURL(blob );

// ... do your stuff here ...
.catch((err) => {
// handle error
});

如果您使用fetch api发出 API 请求,

fetch('/api-url-to-download-pdf', {
headers: {
Accept: 'application/pdf',
},
responseType: 'arraybuffer'
})
.then(response => {
console.log(response);
if (response.ok) {
return response.blob();
}
})
.then(blob => {
const data = URL.createObjectURL(blob);

// ... do your stuff here ...
})
.catch((err) => {
// handle error
});

关于javascript - 使用 JS 消费 Rails send_data 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54823012/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com