我需要3D数组,如符文['red'] [0] ['test']

我该怎么办?

    var runes = {}

runes['red'] = [
    'test': ['loh']
]
runes['blue'] = {}
runes['yellow'] = {}


提前致谢。

最佳答案

因此,您想要一个包含内部包含对象的数组的对象吗?看起来像这样:

runes["red"] = [
    {test: "loh"},
    {anotherTest: "anotherLoh"}
]

09-29 19:28