以下代码正在运行,虽然我没有在此文件之外的某处找到authDemoApplication,而不是在* .js中,也没有在.html文件中找到。
angular.module('angular-auth-demo', ['http-auth-interceptor','content-mocks'])
.directive('authDemoApplication', function() {
});
那么,这个指令如何工作以及在哪里阅读这种调用方法?
答案 0 :(得分:2)
指令在camelCase中命名,但使用连字符分隔的名称引用。您是否搜索了<div auth-demo-application>
类型语法?