admin管理员组文章数量:1344211
I want to be able to have multiple input fields be able to change an object that is returned from an ajax call. I'm not sure how I can prevent the linking of the two objects.
$scope.items = [{value: 1},{value: 2},{value: 3}];
$scope.itemEdit1 = $scope.items;
$scope.itemEdit2 = $scope.items;
Do I have to each edit in a different scope? Here is a fiddle describing my problem: /
I want to be able to have multiple input fields be able to change an object that is returned from an ajax call. I'm not sure how I can prevent the linking of the two objects.
$scope.items = [{value: 1},{value: 2},{value: 3}];
$scope.itemEdit1 = $scope.items;
$scope.itemEdit2 = $scope.items;
Do I have to each edit in a different scope? Here is a fiddle describing my problem: http://jsfiddle/htTQc/
Share Improve this question asked Oct 22, 2012 at 15:45 rcellrcell 6711 gold badge10 silver badges17 bronze badges1 Answer
Reset to default 14Seems like maybe you want to copy the objects, so you're not editing the same reference? Just use angular.copy
. Docs here.
$scope.items = [{value: 1},{value: 2},{value: 3}];
$scope.itemEdit1 = angular.copy($scope.items);
$scope.itemEdit2 = angular.copy($scope.items);
http://jsfiddle/blesh/htTQc/1/
本文标签: javascriptUsing AngularJShow do I data bind two objects separatelyStack Overflow
版权声明:本文标题:javascript - Using angularjs, how do I data bind two objects separately? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743707366a2525343.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论