-
provider模式是策略模式和工厂模式的综合体, 核心目的是 让接口和实现分离 ng中依赖注入,是通过provider和injector联合实现。查看全部
-
eadfadf查看全部
-
scope绑定策略查看全部
-
angularjs过程查看全部
-
为什么需要前端路由以及ajax的缺陷查看全部
-
app.directive('superman',function(){ return{ // 产生作用域 scope:[]; restrict:'AE', //controller相当于一个公共的意思,其它的指令就可以调用 controller:function($scope){ $scope.abilities=[]; this.oddstrength=function(){}; }, //私用的属性的设置scope,elecment,attrs是类似于event一样的参数,它可以使用简版的JQUER调用功能, link:function(scope,elecment,attrs){ element.addclass(''); element.bind('mouseover',function(){ }); } } app.directive("strength",function(){ retunr{ //require相当于声明一个依赖于supcrman的指令,这样就可以使用controller中的公共的方法 require:'^supcrman', //声明了依赖后才能使用后面的supmanctrl对象中的方法,也就是上面的controller中声明的public方法 link:function(scope,element,attrs,supmanctrl){ supermanctrl.addstrength(); } } })查看全部
-
scope的绑定策略查看全部
-
$scope.$watch()监控数据模型的变换 $filter 进行数据格式化 currency 格式化货币 date 格式化日期查看全部
-
在模版中调用函数查看全部
-
三大阶段查看全部
-
???缓存的方法查看全部
-
匹配模式 EACM查看全部
-
匹配模式 EACM查看全部
-
scope绑定策略查看全部
-
创建独立SCOPE,指令间不会互相影响查看全部
举报
0/150
提交
取消