我使用$compile服务编译了一个元素.如果我将它直接添加到DOM,它看起来很棒,并且所有绑定都是正确的.如果我想将该元素作为字符串,它会显示{{stuffHere}}而不是绑定.有没有办法在编译后获取元素的html?
$templateCache.put('template','<div><div><div><span>content is {{content}}</span></div></div> </div>'); $scope.content = 'Hello,World!'; var el = $compile($templateCache.get('template'))($scope); $('body').append(el); alert(el.html());
http://plnkr.co/edit/1sxvuyUZKbse862PieBa?p=preview
该提示显示< div>< div>< span ng-binding> {{content}}< / span>< / div>< / div>
我希望从警报中看到的是< div>< div>< span ng-binding> Hello World< / span>< / div>< / div>
问题是你过早地阅读元素的内容.如果你在读取时添加$timeout,它将是正确的:
原文链接:https://www.f2er.com/angularjs/143493.htmlangular.module('demo',[]); angular.module('demo').controller('PopoverDemoCtrl',function($scope,$timeout,$compile,$templateCache) { $templateCache.put('template','<div><div><div><span>content is {{content}}</span></div></div></div>'); $scope.content = 'Hello,World!'; var el = $compile($templateCache.get('template'))($scope); $('body').append(el); $timeout(function() { console.log(el.html()); },300); // wait for a short while });
为什么需要$timeout?
调用$compile方法后,它不会立即生效.这是由于$digest循环,因为它使用运行$digest循环所需的$scope来查看是否有任何影响$scope.content.这就是你必须设置$timeout的原因,你需要等到$digest周期完成才能实际更改元素的内容.你可以阅读更多关于这一切如何联系在一起here.