我正在尝试记录使用 ng-repeat 填充的 div 的内容,有点像在某些时刻拍摄该 div 的快照,这样我就不必编写更多代码来保存数据。
链接:函数(范围,元素,属性){ scope.game = 游戏;
var $element = $(element),
$clone = $element.children().clone();
scope.$watch('someVariable',function(array){
if (array[array.length - 1] === scope.id){
record($compile($clone)(scope));
console.log($compile($clone)(scope));
}
},true);
}
我一直在尝试这样的代码变体,但没有任何运气,我从来没有能够深度复制由 ng-repeat 生成的 div 的内容
关于如何在某个时间点复制 div 的确切动态生成内容的任何建议?