gpt4 book ai didi

javascript - xhr Post with JSZip Javascript/JSZip 升级

转载 作者:行者123 更新时间:2023-11-30 20:23:41 25 4
gpt4 key购买 nike

我正在尝试使用 zip 文件“发布”和 xhr 请求,但我无法获得正确格式的 zip。我找到了一个显示类似请求的帖子:

var zip = new JSZip(); // create the jszip zip
var input = $("#image")[0]; // Get the image from dom (image is an input button)
zip.file("test.png", input.files[0], {base64: true}); // Add uploaded image to zip

var content = zip.generate({type:"blob"}); // Format zip to blob

//prepare file for api call
var data = new FormData();
data.append("files", content, "Test.zip");

首先,zip.generate({type:"blob"}); 已被弃用。升级指南指出:

// 2.x
zip.generate();
// 3.x
zip.generateAsync({type:"uint8array"})
.then(function (content) {
// use content
});

我不明白什么是“使用内容”。如果我只是将该函数留空,代码将不会运行。我会列出错误,但我使用的是 SAP WEB IDE,它根本不会运行它,它不会显示错误。

我如何格式化 zip 以用于 xhr 请求?


有用的链接:

最佳答案

为什么不试试这个

zip.generateAsync({type:"blob"}).then(function(content) {
var data = new FormData();
data.append("files", content, "Test.zip");
});

在这里查看 https://github.com/Stuk/jszip

关于javascript - xhr Post with JSZip Javascript/JSZip 升级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51164991/

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