1 // 大致思路 (二) 2 // 1. 子類父類 3 /* 4 2.Vue.extend() //建立vue的子類 5 組件的語法器 Vue.extend(options) 6 Profile().$mount('#app') // 掛在app上,並替換app 7 新建 initExend 8 ==》 Vue.extend 9 10 */ 11 /* 3. strat.data 12 ==> if(!vm){子組件中data的值是一個方法function ==> mergeDataorFn()} // 數據的合併 13 ==> else {} //經過實例綁定的data 實際是一個函數 mergeDataorFn 14 ==》 mergeDataorFn if(!vm) mergeDataFn ==> mergeData() 15 else ==》mergedInstanceDataFn ==>mergeData() 16 mergeData(to,from) //終極合併 17 jquery.extend // 深copy和淺copy 18 */ 19 20 21 22 (function(global,factory){ 23 // 兼容 cmd 24 typeof exports === 'object' && module !== 'undefined' ? module.exports = factory(): 25 // Amd 26 typeof define === 'function' && define.amd ? define(factory) : global.Vue = factory(); 27 })(this,function(){ 28 var uip = 0; 29 function warn(string){ 30 console.error('Vue Wran:' + string) 31 } 32 33 function resolveConstructorOptions(Con){ 34 var options = Con.options; 35 // 判斷是否爲vm的實例 或者是子類 36 return options 37 } 38 var hasOwnPropeerty = Object.prototype.hasOwnProperty 39 function hasOwn(obj , key){ 40 return hasOwnPropeerty.call(obj,key) 41 } 42 function makeMap(str, expectsLoweraseC){ 43 if(expectsLoweraseC){ 44 str = str.toLowerCase() 45 } 46 var map = Object.create(null) 47 var list = str.split(',') 48 for(var i = 0 ; i < list.length; i++){ 49 map[list[i]] = true 50 } 51 return function(key){ 52 return map[key] 53 54 } 55 } 56 var isbuiltInTag = makeMap('slot,component',true) 57 var isHTMLTag = makeMap( 58 'html,body,base,head,link,meta,style,title,' + 59 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' + 60 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' + 61 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' + 62 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' + 63 'embed,object,param,source,canvas,script,noscript,del,ins,' + 64 'caption,col,colgroup,table,thead,tbody,td,th,tr,' + 65 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' + 66 'output,progress,select,textarea,' + 67 'details,dialog,menu,menuitem,summary,' + 68 'content,element,shadow,template,blockquote,iframe,tfoot' 69 ); 70 var isSVG = makeMap( 71 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' + 72 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' + 73 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view', 74 true 75 ); 76 var isReservedTag = function(key){ 77 return isHTMLTag(key) || isSVG(key) 78 } 79 function validataComponentName(key){ 80 //檢測component 的自定義名稱是否合格 81 // 只能是字母開頭或下劃線,必須是字母開頭 82 if(!(/^[a-zA-Z][\w-]*$/g.test(key))){ 83 warn('組件的名稱必須是字母或中橫線,必須由字母開頭') 84 } 85 // 1. 不能爲內置對象,2.不能是html ,和avg的內部標籤 86 if( isbuiltInTag(key) || isReservedTag(key)){ 87 warn('不能爲html標籤或者avg的內部標籤') 88 } 89 } 90 function checkComonpents(child){ 91 for(var key in child.component){ 92 validataComponentName(key) 93 } 94 } 95 // 配置對象 96 var config = { 97 // 自定義的策略 98 optionMergeStrategies:{} 99 } 100 var strats = config.optionMergeStrategies 101 strats.el = function(parent,child , key , vm){ 102 103 if(!vm){ 104 warn('選項'+key+'只能在vue實例用使用') 105 } 106 return defaultStrat(parent,child , key , vm) 107 } 108 function mergeData(to,form){ 109 // 終極合併 110 if(!form){ 111 return to 112 } 113 } 114 function mergeDataorFn(parentVal,childVal,vm){ 115 // 合併 parentVal childVal 都是函數 116 if(!vm){ 117 if(!childVal){ 118 return parentVal 119 } 120 if(!parentVal){ 121 return childVal 122 } 123 return function mergeDataFn(parentVal,childVal,vm){//只是一個函數 什麼樣的狀況下調用 加入響應式系統 124 // 合併子組件對應的data 和 父組件對應的data 125 return mergeData( 126 typeof parentVal === 'function' ? parentVal.call(this,this) : parentVal, // -----忘記寫 127 typeof childVal === 'function' ? childVal.call(this,this): childVal) // -----忘記寫 128 } 129 }else{ // vue實例 130 return function mergeInstanceDataFn(parentVal,childVal,vm){//只是一個函數 什麼樣的狀況下調用 加入響應式系統 131 var InstanceData = typeof childVal === 'function' ? childVal.call(vm,vm): childVal; // -----忘記寫 132 var defaultData = typeof parentVal === 'function' ? parent.call(vm,vm): parentVal; // -----忘記寫 133 if(InstanceData){ 134 return mergeData(parentVal,childVal) 135 }else{ // -----忘記寫 136 defaultData 137 } 138 139 } 140 } 141 } 142 strats.data = function(parent,child , key , vm){ 143 if(!vm){ 144 // console.log(typeof child === 'function') 145 if(child && !(typeof child === 'function')){ 146 warn('data必須返回是一個function') 147 } 148 return mergeDataorFn(parent,child) 149 } 150 return mergeDataorFn(parent,child,vm) 151 } 152 function defaultStrat(parent,child , key , vm){ 153 return child === undefined ? parent :child ; 154 } 155 function mergeOptions(parent,child,vm){ 156 var options = {} 157 // 檢測是component 是不是合法的 158 159 checkComonpents(child) 160 161 // console.log(parent, child) 162 for(key in parent){ 163 magerField(key) 164 } 165 for(key in child){ 166 if(!hasOwn(parent ,key)){ // parent 中循環過地方不進行循環 167 magerField(key) // ----忘記寫 168 } 169 170 } 171 // 默認合併策略 172 function magerField(key){ 173 // 自定義策略 默認策略 174 // console.log(key) 175 var result = strats[key] || defaultStrat // ---忘記寫 176 options[key] = result(parent[key],child[key] , key , vm) 177 } 178 // console.log(options) 179 return options 180 } 181 function initMinxin(options){ 182 Vue.prototype._init = function(options){ 183 var vm = this 184 // 記錄生成的vue實例對象 185 vm._uip = uip++ // //-------忘記寫 186 187 vm.$options =mergeOptions(resolveConstructorOptions(vm.constructor),options,vm) 188 } 189 } 190 function Vue(options){ 191 // 安全機制 192 if(!(this instanceof Vue)){ //-------忘記寫 193 warn('Vue是一個構造函數,必須是由new關鍵字調用') 194 } 195 this._init(options) 196 } 197 initMinxin() // 初始化選項1: 規範 2: 合併策略。 198 Vue.options = { 199 components: {}, 200 directives:{}, 201 _bash: Vue 202 } 203 function initExend(Vue){ 204 Vue.extend = function(extendOptions){ 205 extendOptions = extendOptions || {} // -----忘記寫 206 var Super = this 207 var Child = function VueComponent() { 208 this._init(options) 209 } 210 Child.prototype = Object.create(Super.prototype) 211 Child.prototype.constructor = Child // 改變constructor 的指向 212 Child.options = mergeOptions(Super.options,extendOptions) 213 // 子類繼承父類的靜態方法。 214 Child.extend = Vue.extend 215 return Child 216 } 217 } 218 initExend(Vue) 219 return Vue 220 })
1 <body> 2 <div id="app"> 3 <huml></huml> 4 </div> 5 <script src="vue.js"></script> 6 <!-- <script src="vue2.5.1.js"></script> --> 7 <script type="text/javascript"> 8 var componentA = { 9 el: "#app" 10 } 11 var vm = new Vue({ 12 el:"#app", 13 data: { 14 message: "hello Vue", 15 key: "wodow" 16 }, 17 components:{ 18 huml: componentA 19 } 20 21 }) 22 // console.log(Vue) 23 var Parent = Vue.extend({ 24 data: function() {} 25 }) 26 var Child = Parent.extend({}); 27 console.log(vm.$options) 28 </script> 29 </body>
以上僅我的在學習中的總結筆記,若有問題,請評論回覆。javascript