3

如果我的应用程序是这样定义的......

<html xmlns="http://www.w3.org/1999/xhtml" ng-app>

如何获取对模块的引用以便访问指令?

我不能这样做...

angular.module('myApp', []).directive

..因为该应用程序没有名称。

4

2 回答 2

3

这是另一种方式。ng-app你首先在 JavaScript 中定义你的模块,然后你必须从属性中引用一个顶级模块:

<html xmlns="http://www.w3.org/1999/xhtml" ng-app="myApp">
于 2013-06-04T17:06:51.697 回答
1

You can also manually bootstrap your app by calling the following:

   angular.element(document).ready(function() {
     angular.bootstrap(document, ['myApp']);
   });
于 2013-06-04T17:41:25.717 回答