gpt4 book ai didi

JavaScript 数据结构

转载 作者:行者123 更新时间:2023-12-02 15:22:55 24 4
gpt4 key购买 nike

我正在编写一个脚本,该脚本读取 zip 文件并提取 zip 内文件的内容。我想做的是以以下格式向我的服务器发送请求:

file0name,contentfile0;file1name,contentfile1;file2name,contentfile2

有人可以告诉我应该使用什么类型的数据结构吗?它是列表还是 JSON 对象?

https://jsfiddle.net/ker1w6pb/6/

最佳答案

假设您将内容转换为字符串(这对我来说听起来很奇怪),您只需 POST 包含字符串的 JSON 数据对象即可:

var postData = [{
filename: 'file0',
content: 'content0'
}, {
filename: 'file1',
content: 'content1'
}, {
filename: 'file2',
content: 'content2'
}];

var postString = postData.reduce(function(previous, current) {
return previous + current.filename + ',' + current.content + ';';
}, '');

//post(uri, {data: postString});
document.write(postString);

关于JavaScript 数据结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33898672/

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