我正在对菜单进行本地化,并希望以这种方式将声明的数组分配给对象属性:
var menuListLocal=["Home","Play","Options","Exit"];
var menu_Controller={
_menuList: menuListLocal,
// .... //
}
对不起,如果太明显。
谢谢。
最佳答案
记住罗斯塔的评论,您所拥有的应该起作用。
var menuListLocal=["Home","Play","Options","Exit"];
var menu_Controller={
_menuList: menuListLocal,
_other: 'Something'
};
用法样本:
var home = menuListLocal._menuList[0];