gpt4 book ai didi

javascript - 返回多维数组

转载 作者:行者123 更新时间:2023-11-28 19:55:41 24 4
gpt4 key购买 nike

我想从这样的函数返回一个多维数组,但我一定写错了,我不知道出了什么问题。我想要对。

function Multidimensional(){

return [
"one": [
"two":[],
"three":[
"testing.png":{source:"http..."}
],
"another.png": {source:"http..."}
];
}

最佳答案

如果你想要键/值对,你应该使用 an object .

function Multidimensional(){

return {
"one": {
"two":[],
"three":{
"testing.png":{source:"http..."}
},
"another.png": {source:"http..."}
};
}

您可以像这样访问返回的数据:

var data = Multidimensional();
console.log(data['another.png']);
// or
console.log(data.one);

关于javascript - 返回多维数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22623641/

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