-
restrict---匹配模式查看全部
-
restrict:匹配模式 A:属性 E:元素 M:注释 C:css样式(class)查看全部
-
注册外部指令publishExternalAPI查看全部
-
通用的方法抽离做 server查看全部
-
template(模板):template: '<div>Hi everyone!</div>' 缺点:编写的代码比较少,编写大量代码困难,修改不方便。 templateUrl: 'hello.html' 将模板编写成独立的html文件,可以在里面编写大量的html标签。 $templateCache: 缓存编写的模板,供其他指令使用。 //注射器加载完所有模块时,此方法执行一次 app.run(function($templateCache){ $templateCache.put('hello.html', '<div>Hello everyone!!!</div>') }); //指令调用模板 app.directive('hello', function($templateCache){ return{ restrict: 'AECM', template: $templateCache.get('hello.html'), replace: true } });查看全部
-
restrict: 匹配模式 A:属性(attribute) <div hello></div> E: 元素名称(element) <hello></hello> C: 类名(class) <div class="hello"></div> M: 注释(comment) <!-- directive: hello -->查看全部
-
依赖注入查看全部
-
ng模块切分方式查看全部
-
$scope的生命周期查看全部
-
神奇的$scope查看全部
-
controller注意点查看全部
-
hahaha查看全部
-
一切都是从模块开始的查看全部
-
AngularJS官方推荐的模块切分方式(多个控制器)查看全部
-
使用ngRoute进行视图之间的路由查看全部
举报
0/150
提交
取消