gpt4 book ai didi

javascript - 试图从后端发送一个 zip 到前端

转载 作者:行者123 更新时间:2023-11-30 19:48:06 27 4
gpt4 key购买 nike

在我的 ember.js webapp 中,用户可以选择下载一个 zip 文件。单击该按钮时,将触发一个操作,该操作将请求发送到后端服务器,后端服务器生成 zip 并将其返回。理想情况下,zip 应该会自动下载。

在我的后端端点中,我返回

return Response
.ok(FileUtils.readFileToByteArray(new File(tmpZipFilename))) // tmpZipFilename is a String
.type("application/zip")
.header("Content-Disposition", "attachment; filename=\"" + finalZipFilename + "\"")
.build();

在我的前端(改编自 here )

submit() {
var formData = new FormData(this);
let token = this.get('session.data.authenticated.token');
jquery.ajax({
url: `myUrl`,
data: formData,
processData: false,
contentType: false,
beforeSend: function(xhr) {xhr.setRequestHeader('Authorization', `Bearer ${token}`)},
type: 'POST',
success: function(data) {
var blob = new Blob([data], {type: 'application/zip'});
let a = document.createElement("a");
a.style = "display: none";
document.body.appendChild(a);
let url = window.URL.createObjectURL(blob);
a.href = url;
a.download = 'myFile.zip';
a.click();
window.URL.revokeObjectURL(url);
},
failure: function() {
// other stuff
}
})
}

响应 header 如下:

HTTP/1.1 200 OK
X-Powered-By: Undertow/1
Cache-Control: no-store
Date: Tue, 19 Feb 2019 16:34:35 GMT
Server: WildFly/10
Content-Type: application/zip
Content-Disposition: attachment; filename="filename.zip"
Connection: close
Transfer-Encoding: chunked

我已确认后端部分中的 tmpZipFilename 确实正确指向了正确的 zip 文件。当用户单击下载按钮时,确实下载了一个名为 myFile.zip 的文件。但是,下载的文件不可解压缩,并且与 tmpZipFilename 指向的正确文件大小不同。我做错了什么?

最佳答案

答案是简单地添加 dataType: 'arraybuffer':

...
jquery.ajax({
url: 'myUrl',
data: formData,
processData: false,
contentType: false,
dataType: 'arraybuffer',
beforeSend: function(xhr) {
...

关于javascript - 试图从后端发送一个 zip 到前端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54771261/

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