我想从这样的函数返回一个多维数组,但我一定是写错了,我不知道什么是错的。我想要key
和value
对
function Multidimensional(){
return [
"one": [
"two":[],
"three":[
"testing.png":{source:"http..."}
],
"another.png": {source:"http..."}
];
}
如果你想要键/值对,你应该使用对象。
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);