0

我需要创建一个多维关联对象,并且它正在部分工作。

简化版:

var sources = {
    tales:  ['some content', 'some more content'],
    thehut: ['some content', 'some more content']
};

我想要的只是“一些内容”和“更多内容”有一个别名,但我无法让它正常工作。

4

2 回答 2

3

你是这个意思吗?

var sources = {
    tales:  {name1:'some content', name2:'some more content'},
    thehut: {name1:'some content', name2:'some more content'}
};
于 2013-03-07T13:55:49.653 回答
1

我不明白你所说的“别名”是什么,这是你想要的吗?

var sources =  {
    tales : {some_content: 'content 1', some_more_content: 'content 2'},
    thehut: {some_content: 'content 3', some_more_content: 'content 4'}
};

你像这样使用它:

> sources.tales.some_content
  "content 1"
于 2013-03-07T13:57:59.357 回答