当前位置:Gxlcms > JavaScript > angularJS里json对象怎样才能push到数组中

angularJS里json对象怎样才能push到数组中

时间:2021-07-01 10:21:17 帮助过:3人阅读

这次给大家带来angularJS里json对象怎样才能push到数组中,angularJS里json对象push到数组中的注意事项有哪些,下面就是实战案例,一起来看一下。

在项目中,api要求的数据格式为

$scope.data = {
 "name":"zhangsan",
 "Menus": [{"id":1},{"id":2}]
}

而我的返回格式为

 $scope.data=["name":"zhangsan"]
 $scope.selected = [1,2,3];

需要将两个数组整合,其中$scope.selected要先转化为json对象,再进行push操作。

代码如下:

// 将menu数组转化为json格式
 self.convertJson = function (callback) {
  //传入数组为$scope.selected,每循环一遍就push一次
  angular.forEach($scope.selected, function (value, key) {
   $scope.data.Menus.push({
    'id':value
   });
  });
  callback($scope.data);
 };

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读:

Immutable.js怎样实现撤销重做效果

easyui日期时间框在IE中的兼容性如何处理

以上就是angularJS里json对象怎样才能push到数组中的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行