目前,我有一个包含以下内容的 index.html:
<div ng-controller="MainCntl">
<div ng-view></div>
</div>
ng-view 根据路由 URL 加载“template1.html”或“template2.html”。“template1”由“Controller1”控制,“template2”由“Controller2”控制。
我想要做的:仅在 MainController 内的所有异步调用完成后才加载 URL 映射的内容(使用 $routeProvider)。
任何建议将不胜感激。