extjs源码分析-001(Ext.apply)

 
  1. /**  
  2.  * Copies all the properties of config to obj.  
  3.  * @param {Object} 继承的对象  
  4.  * @param {Object} 新的配置参数--这个值可以为空  
  5.  * @param {Object} 新的配置参数--这个值可以为空  
  6.  * @return {Object} returns obj 返回复制值后的对象  
  7.  * @member Ext apply  
  8.  */  
  9.   
  10. Ext.apply = function(o, c, defaults){      
  11.     // no "this" reference for friendly out of scope calls      
  12.     if(defaults){      
  13.         Ext.apply(o, defaults);      
  14.     }      
  15.     if(o && c && typeof c == 'object'){      
  16.         for(var p in c){      
  17.             o[p] = c[p];      
  18.         }      
  19.     }      
  20.     return o;      
  21. };    
  22. //执行过程是:将c的值和defaults的值拷贝给o,然后返回o对象   
  23. //使用方式:   
  24. var o = {};   
  25. var c = {name:'tom',showName:function(){alert(name);}};   
  26. var d = {age:23};   
  27. Ext.apply(o,c,d);  

你可能感兴趣的:(c,function,object,ExtJs)