0

我可以在同一个应用程序中有两个不同的 ng-app 并使用 $router 在两个模块之间进行路由吗?据我所知,不能在同一个应用程序中使用两个 ng-view

高级概念:

加载索引.html {

     <ng-view>: Load Login.html Here.
             On Successfull Login, Load Home.html here
                                       {
                                         <ng-view>: Load HomePartials.html & other partials
                                         on redirect go back to ng-view of index.html where Login.html would be loaded
                                          </ng-view>
                                       }
 </ng-view>

}

请分享您对此的看法。提前致谢!!

4

1 回答 1

0

每个 html 文档不能有超过 1 个 ng-app 指令:

http://docs.angularjs.org/api/ng.directive:ngApp

您可以手动引导多个角度模块,但您将无法为其中一个以上使用路由,因为它们使用窗口位置

于 2012-10-08T15:07:15.847 回答