有两种方法可以检测ng-include何时完成加载,具体取决于您的需要:
原文链接:https://www.f2er.com/angularjs/145297.html<div ng-include="'template.html'" onload="loaded = true"></div>
2)通过ng-include发出的事件$includeContentLoaded
– 用于应用程序范围的处理。例如:
app.run(function($rootScope){ $rootScope.$on("$includeContentLoaded",function(event,templateName){ //... }); });
当它完成加载内容时