angular의 $rootScope

2251 단어
scope가 가지고 있는 속성
function Scope(){
    this.$id ;
    this.$$phase
    this.$parent
    this.$$watchers
    this.$$nextSibling
    this.$$prevSibling
    this.$$childHead
    this.$$childTail
    
    this.$rrot
    this.$$destroyed
    this.$$listeners    //   $on ,$broadcast , $emit  。
    this.$$listenerCount
    this.$$watchersCount
    this.$$isolateBindings
}

소유 방법
Scope.prototype = {
    constructor:Scope,
    
    //       scope 
    $new:function(isolate,parent){
    
    }
    
    //       
    $watch:function(watchExp,listener,objectEquality,prettyPrintExpression){
    
    }
    
    //     [] 
    $watchGroup:function(watchExpressions,listener){
    
    }
    
    //    
    $watchCollection:function(obj,listener){
    
    }
    
    //   
    $digest:function(){
    
    }
    
    //  
    $destroy:function(){
    
    }
    
    // eval 
    // execute the expression on the current scope and return the result 
    $eval:function(expr,locals){
        return $parse(expr)(this,locals);
    }
    
    // execute the expression on the current scope at a later point in time 
    $evalAsync:function(expr,locals){
    
    }
    
    // 
    $$postDigest:function(fn){
        postDigestQueue.push(fn);
    }
    
    // $apply is used to execute an expression in angular form outside of the angular framework
    // such as browser DOM events,setTimeout,XHR,third party libraries 
    $apply:function(expr){
    
    }
    
    //  
    $applyAsync:function(expr){
        var scope = this;
        expr && applyAsyncQueue.push($applyAsyncExpression);
        scheduleApplyAsync();
        function $applyAsyncExpression(){
            scope.$eval(expr);
        }
    }
    
    //   scope.$$listeners = []  。
    //    , 
    $on:function(name,listener){
    
    }
    
    //  
    $emit:function(name,args){
    
    }
    
    //   
    $broadcast:function(name,args){
    
    }
    
}

하위 도메인 생성의 경우
function createChildScopeClass(parent){
    function ChildScope(){
    this.$id ;
    this.$$phase
    this.$parent
    this.$$watchers
    ...
    }
    
    //  。
    ChildScope.prototype = parent;
    return ChildScope;
}

좋은 웹페이지 즐겨찾기