将$ scope对象推送到按钮单击时的视图

时间:2013-10-24 06:09:48

标签: javascript jquery angularjs

目前我有一个数组作为$ scope对象

$scope.data {
  item1: "Value",
  item2: "Value Alt"
}

每个项目都与表单输入和默认值相关,我希望能够在ng-click事件中从同一组数据创建新表单,并且还可以实现我使用jQuery.clone尝试的结果但是它打破了表单和表单验证

1 个答案:

答案 0 :(得分:0)

使用angular.copy克隆对象。

用法

angular.copy(source[, destination]);

在你的情况下:

 $scope.data  = {
   item1: "Value",
   item2: "Value Alt"
}

$scope.mydata = angular.copy($scope.data);

if will clone object $scope.data

了解更多详情read this