angularjs – ng-include在angular js中的加载完成

前端之家收集整理的这篇文章主要介绍了angularjs – ng-include在angular js中的加载完成前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_403_0@ 什么是最好的方法来检测由ng -include完成html加载。我想写一些代码,当它将完成加载。

感谢任何想法。

有两种方法可以检测ng-include何时完成加载,具体取决于您的需要:

1)通过onload属性 – 用于内联表达式。例如:

<div ng-include="'template.html'" onload="loaded = true"></div>

2)通过ng-include发出的事件$includeContentLoaded – 用于应用程序范围的处理。例如:

app.run(function($rootScope){
  $rootScope.$on("$includeContentLoaded",function(event,templateName){
     //...
  });
});

当它完成加载内容

原文链接:https://www.f2er.com/angularjs/145297.html

猜你在找的Angularjs相关文章