angularJS里json对象怎样才能push到数组中
程序员文章站
2022-04-12 14:03:41
...
这次给大家带来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); };
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
以上就是angularJS里json对象怎样才能push到数组中的详细内容,更多请关注其它相关文章!