我在没有帮助的情况下查看了其他类似的帖子,它们都从已经制作的多维数组开始,我想通过使用 .push 神奇地制作一个。
我的数组:
ItemsArray.push({
RoomName : RoomName,
Item : {//this is where I want the multi-array }
});
我尝试使用:ItemsArray.Item.push{ stuff:morestuff }
但它不再说'ItemsArray.Item'未定义......这显然很荒谬?
也试过:ItemsArray[1].push{}
同样的错误......
当然,这一定是一个愚蠢的简单问题。
谢谢!