我可以在AngularJS中使用另一个ng-app

前端之家收集整理的这篇文章主要介绍了我可以在AngularJS中使用另一个ng-app前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个ng应用程序
喜欢 ;
<div ng-app="app1" >
    somexpression   
    <div ng-app="app2">
        some more expression
    </div>
</div>

有什么办法让它工作吗?
当我做一个嵌套的ng应用程序,它不工作

我知道我可以使用两个不同的控制器,但是我不想使用两个控制器
—-编辑—–

事情是;

angular.module('AppName',[
            'angular-carousel'
        ])

所以我需要以某种方式将这个ng应用程序更改为指令

从AngularJS文件中,答案是否定的

07000

AngularJS applications cannot be nested within each other.

如果不是嵌套的话,那就可以了,有人已经问过这个问题,请参考:AngularJS Multiple ng-app within a page
和AnguarJS文件

07000

Only one AngularJS application can be auto-bootstrapped per HTML document. The first ngApp found in the document will be used to define the root element to auto-bootstrap as an application. To run multiple applications in an HTML document you must manually bootstrap them using angular.bootstrap instead.

原文链接:/angularjs/144049.html

猜你在找的Angularjs相关文章