angularjson对象push到数组中的⽅法
在项⽬中,api要求的数据格式为
$scope.data = {
"name":"zhangsan",
"Menus": [{"id":1},{"id":2}]
}
⽽我的返回格式为
angular和angularjs$scope.data=["name":"zhangsan"]
$scope.selected = [1,2,3];
需要将两个数组整合,其中$scope.selected要先转化为json对象,再进⾏push操作。
代码如下:
/
/ 将menu数组转化为json格式
//传⼊数组为$scope.selected,每循环⼀遍就push⼀次
angular.forEach($scope.selected, function (value, key) {
$scope.data.Menus.push({
'id':value
});
});
callback($scope.data);
};
以上这篇angular json对象push到数组中的⽅法就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论