underscore의Function의after


  after
 
   _.after(count,function)
 
  • function을 만듭니다.count회 호출된 후에만 실행할 수 있습니다
  • 응용 프로그램: 비동기 요청이 모두 끝난 후 프로그램을 실행할 때 애프터
  • 를 사용할 수 있습니다.
     
    _.after = function(times,func){
    
           // times      0   
           if(times < = 0){
                return func();
           }
    
           return function(){
    
               //    times 
               if(-- times < 1){
                   
                    return func.apply(this,arguments);    
     
               }
    
           };
          
    
    }

    좋은 웹페이지 즐겨찾기