如果我的应用程序是这样定义的......
<html xmlns="http://www.w3.org/1999/xhtml" ng-app>
如何获取对模块的引用以便访问指令?
我不能这样做...
angular.module('myApp', []).directive
..因为该应用程序没有名称。
如果我的应用程序是这样定义的......
<html xmlns="http://www.w3.org/1999/xhtml" ng-app>
如何获取对模块的引用以便访问指令?
我不能这样做...
angular.module('myApp', []).directive
..因为该应用程序没有名称。
这是另一种方式。ng-app
你首先在 JavaScript 中定义你的模块,然后你必须从属性中引用一个顶级模块:
<html xmlns="http://www.w3.org/1999/xhtml" ng-app="myApp">
You can also manually bootstrap your app by calling the following:
angular.element(document).ready(function() {
angular.bootstrap(document, ['myApp']);
});