最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Using angularjs, how do I data bind two objects separately? - Stack Overflow

programmeradmin1浏览0评论

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 badges
Add a ment  | 

1 Answer 1

Reset to default 14

Seems 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/

发布评论

评论列表(0)

  1. 暂无评论