如何在javascript中将Object添加到数组中

时间:2014-07-08 17:15:26

标签: javascript angularjs

我有这样的代码:

$scope.role.object_access_right = {contact:1,group:1,image:1,text:1,email_template:1,email:1,channel:1,campaign:1,invoice:1,user:1,account:1,tenant:1,}

我这里有空数组,

$scope.access = [];

如何将键推到空数组以获得结果?

 $scope.access = [contact,group,text ...]

1 个答案:

答案 0 :(得分:6)

$scope.access = Object.keys($scope.role.object_access_right);

这应该可以解决问题。