我需要创建一个多维关联对象,并且它正在部分工作。
简化版:
var sources = {
tales: ['some content', 'some more content'],
thehut: ['some content', 'some more content']
};
我想要的只是“一些内容”和“更多内容”有一个别名,但我无法让它正常工作。
我需要创建一个多维关联对象,并且它正在部分工作。
简化版:
var sources = {
tales: ['some content', 'some more content'],
thehut: ['some content', 'some more content']
};
我想要的只是“一些内容”和“更多内容”有一个别名,但我无法让它正常工作。
你是这个意思吗?
var sources = {
tales: {name1:'some content', name2:'some more content'},
thehut: {name1:'some content', name2:'some more content'}
};
我不明白你所说的“别名”是什么,这是你想要的吗?
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"