原版地址:http://code.angularjs.org/1.0.2/docs/guide/scope一、什么是Scope? scope(http://code.angularjs.org/1.0.2/docs/api/ng.$rootScope.Scope)是一个指向应用model的obje....
分类:
Web程序 时间:
2015-03-19 14:37:32
阅读次数:
161
RootScopeProvider简介RootScopeProvider是angularjs里面比较活跃的一个provider。它主要用来生成实例rootScope,它代表angularjs应用的根作用域。我们可以把它看成MVVM模式中的VM。源代码如下:function $RootScopePro...
分类:
Web程序 时间:
2015-02-12 10:40:21
阅读次数:
3172
自己使用angular实现html中类似title的功能.1)首先写指令 exports.define=function(md){//这个是写的通用的安全使用apply的服务md.factory(‘safeApply‘,function($rootScope){ returnfunction(scope,fn){ varphase=scope.$root.$$phase; if(phase==‘$apply‘||phase==‘$..
分类:
Web程序 时间:
2014-12-29 12:20:16
阅读次数:
237
In the previous code, both categories and bookmarks are binded to $rootscope, or let says the same scope.eggly-app.js:angular.module('Eggly', [ 'ui...
分类:
Web程序 时间:
2014-12-11 18:58:22
阅读次数:
201
上文中总结完了ng-view的应用,将运维后台分开界面到2个,进行到 逻辑Controller处理中,本文将总结一下在项目中Controller都用到了哪些知识:
$scope:作用域对象,只是代表本Controller对象,本作用域的任何对象都用$scope来声明。
$rootScope:代表整个页面作用域,可以在任意子$scope之间传递全局对象
$http:用来发送ht...
分类:
其他好文 时间:
2014-11-19 16:05:23
阅读次数:
116
1)首先写指令 exports.define=function(md){//这个是写的通用的安全使用apply的服务md.factory(‘safeApply‘,function($rootScope){ returnfunction(scope,fn){ varphase=scope.$root.$$phase; if(phase==‘$apply‘||phase==‘$digest‘){ if(fn&&(typeof(fn)=..
分类:
Web程序 时间:
2014-11-10 15:48:34
阅读次数:
186
来源:http://www.cnblogs.com/CraryPrimitiveMan/p/3679552.htmlAngularJS中的作用域有一个非常有层次和嵌套分明的结构。其中它们都有一个主要的$rootScope(也就说对应的Angular应用或者ng-app),然后其他所有的作用域部分都是...
分类:
Web程序 时间:
2014-10-22 20:13:43
阅读次数:
250
$injector、$rootScope和$scope是angularJS框架中比较重要的东西,理清它们之间的关系,对我们后续学习和理解angularJS框架都非常有用。
1、$injector其实是一个IOC容器,包含了很多服务(类似于spring框架中的bean),其它代码能够通过 $injector.get("serviceName")的方式,从injector中获取所需要的服务。
2、scope是angularJS中的作用域(其实就是存储数据的地方),很类似javascript的原型链。...
分类:
Web程序 时间:
2014-10-19 23:19:03
阅读次数:
265
每部分的angularjs应用都有一个父scope(但是ng-app对应的是$rootScope,这个scope是终极scope),除了isolatescope,所有的scope都是通过原型继承来创建,也就是说可以访问它的父的scope.如果你对OOP比较熟悉,这种行为你看起来就比较熟悉了。每次html渲染属性和方法是,会从当..
分类:
Web程序 时间:
2014-10-01 01:01:11
阅读次数:
244
### 本文接着上一篇讲---###
回顾上次说到了rootScope里的$watch方法中的解析监控表达式,即而引出了对parse的分析,今天我们接着这里继续挖代码.###
$watch续先上一块$watch代码$watch: function(watchExp, listener, object...
分类:
Web程序 时间:
2014-05-28 16:36:45
阅读次数:
436