gpt4 book ai didi

javascript - 在客户端从数组构造 JSON 对象?

转载 作者:太空宇宙 更新时间:2023-11-04 02:49:22 24 4
gpt4 key购买 nike

我有一个像这样的字符串数组:

['QWJvdXQ=','SG93IGl0IFdvcmtz','SG9tZQ==','Q29udHJpYnV0ZQ==','Q29udGFjdA==']

我想做的就是把它变成这样:

[
{
"id" : "QWJvdXQ=",
"url": "about.html"

},
{
"id" : "SG93IGl0IFdvcmtz",
"url": "how_it_works.html"

},
{
"id" : "SG9tZQ==",
"url": "index.html"

},
{

"id" : "Q29udHJpYnV0ZQ==",
"url": "contribute.html"
},
{
"id" : "Q29udGFjdA=="
"url": "contact.html"
}
]

属性不是焦点 - 我基本上想做的是使数组中的每个项目成为一个对象,其值作为属性的值,然后将另一个(或更多)键值对添加到这些对象中。

现在,我正在尝试使用 jQuery 和 JS 在客户端执行此操作。我也在运行node.js,所以如果这在服务器端更容易做到,我愿意接受任何建议。如有任何帮助,我们将不胜感激!

最佳答案

你需要什么

一起;

JSON.stringify(
['QWJvdXQ=','SG93IGl0IFdvcmtz','SG9tZQ==','Q29udHJpYnV0ZQ==','Q29udGFjdA=='].map(
function (e) {
return {
'id': e,
'url': atob(e).toLowerCase().replace(/\s/g, '_') + '.html'
}; // I converted the string to URL as I expect you wanted
}
),
0, 4);

关于javascript - 在客户端从数组构造 JSON 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15719724/

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