摘要:回到最開(kāi)始的組件問(wèn)題那么,說(shuō)了這么多面向?qū)ο?,現(xiàn)在回到最開(kāi)始的那個(gè)組件的實(shí)現(xiàn)如何用面向?qū)ο髞?lái)實(shí)現(xiàn)??偨Y(jié)從一個(gè)組件出發(fā),一步一步爬坑,又跑去介紹中的面向?qū)ο螅绻隳芸吹阶詈?,那么你就可?dòng)手一步一步實(shí)現(xiàn)一個(gè)了,純調(diào)侃。
其實(shí),無(wú)論是寫(xiě)什么語(yǔ)言的程序員,最終的目的,都是把產(chǎn)品或代碼封裝到一起,提供接口,讓使用者很舒適的實(shí)現(xiàn)功能。所以對(duì)于我來(lái)說(shuō),往往頭疼的不是寫(xiě)代碼,而是寫(xiě)注釋和文檔!如果接口很亂,肯定會(huì)頭疼一整天。
JavaScript 最初是以 Web 腳本語(yǔ)言面向大眾的,盡管現(xiàn)在出了服務(wù)器端的 nodejs,但是單線程的性質(zhì)還沒(méi)有變。對(duì)于一個(gè) Web 開(kāi)發(fā)人員來(lái)說(shuō),能寫(xiě)一手漂亮的組件極為重要。GitHub 上那些開(kāi)源且 stars 過(guò)百的 Web 項(xiàng)目或組件,可讀性肯定非常好。
從一個(gè)例子來(lái)學(xué)習(xí)寫(xiě)組件組件教程的參考來(lái)自于 GitHub 上,通俗易懂,鏈接。
要實(shí)現(xiàn)下面這個(gè)功能,對(duì)一個(gè) input 輸入框的內(nèi)容進(jìn)行驗(yàn)證,只有純數(shù)字和字母的組合才是被接受的,其他都返回 failed:
全局變量寫(xiě)法這種寫(xiě)法完全沒(méi)有約束,基本所有人都會(huì),完全沒(méi)啥技巧:
// html // javascript var input = document.getElementById("input"); function getValue(){ return input.value; } function render(){ var value = getValue(); if(!document.getElementById("show")){ var append = document.createElement("span"); append.setAttribute("id", "show"); input.parentNode.appendChild(append); } var show = document.getElementById("show"); if(/^[0-9a-zA-Z]+$/.exec(value)){ show.innerHTML = "Pass!"; }else{ show.innerHTML = "Failed!"; } } input.addEventListener("keyup", function(){ render(); });
缺點(diǎn)自然不用多說(shuō),變量沒(méi)有任何隔離,嚴(yán)重污染全局變量,雖然可以達(dá)到目的,但極不推薦這種寫(xiě)法。
對(duì)象隔離作用域鑒于以上寫(xiě)法的弊端,我們用對(duì)象來(lái)隔離變量和函數(shù):
var obj = { input: null, // 初始化并提供入口調(diào)用方法 init: function(config){ this.input = document.getElementById(config.id); this.bind(); //鏈?zhǔn)秸{(diào)用 return this; }, // 綁定 bind: function(){ var self = this; this.input.addEventListener("keyup", function(){ self.render(); }); }, getValue: function(){ return this.input.value; }, render: function(){ var value = this.getValue(); if(!document.getElementById("show")){ var append = document.createElement("span"); append.setAttribute("id", "show"); input.parentNode.appendChild(append); } var show = document.getElementById("show"); if(/^[0-9a-zA-Z]+$/.exec(value)){ show.innerHTML = "Pass!"; }else{ show.innerHTML = "Failed!"; } } } window.onload = function(){ obj.init({id: "input"}); }
相對(duì)于開(kāi)放式的寫(xiě)法,上面的這個(gè)方法就比較清晰了。有初始化,有內(nèi)部函數(shù)和變量,還提供入口調(diào)用方法。
新手能實(shí)現(xiàn)上面的方法已經(jīng)很不錯(cuò)了,還記得當(dāng)初做百度前端學(xué)院題目的時(shí)候,基本就是用對(duì)象了。
不過(guò)這種方法仍然有弊端。obj 對(duì)象中的方法都是公開(kāi)的,并不是私有的,其他人寫(xiě)的代碼可以隨意更改這些內(nèi)容。當(dāng)多人協(xié)作或代碼量很多時(shí),又會(huì)產(chǎn)生一系列問(wèn)題。
函數(shù)閉包的寫(xiě)法var fun = (function(){ var _bind = function(obj){ obj.input.addEventListener("keyup", function(){ obj.render(); }); } var _getValue = function(obj){ return obj.input.value; } var InputFun = function(config){}; InputFun.prototype.init = function(config){ this.input = document.getElementById(config.id); _bind(this); return this; } InputFun.prototype.render = function(){ var value = _getValue(this); if(!document.getElementById("show")){ var append = document.createElement("span"); append.setAttribute("id", "show"); input.parentNode.appendChild(append); } var show = document.getElementById("show"); if(/^[0-9a-zA-Z]+$/.exec(value)){ show.innerHTML = "Pass!"; }else{ show.innerHTML = "Failed!"; } } return InputFun; })(); window.onload = function(){ new fun().init({id: "input"}); }
函數(shù)閉包寫(xiě)法的好處都在自執(zhí)行的閉包里,不會(huì)受到外面的影響,而且提供給外面的方法包括 init 和 render。比如我們可以像 JQuery 那樣,稍微對(duì)其改造一下:
var $ = function(id){ // 這樣子就不用每次都 new 了 return new fun().init({"id": id}); } window.onload = function(){ $("input"); }
還沒(méi)有涉及到原型,只是簡(jiǎn)單的閉包。
基本上,這已經(jīng)是一個(gè)合格的寫(xiě)法了。
面向?qū)ο?/b>雖然上面的方法以及夠好了,但是我們的目的,是為了使用面向?qū)ο?。面向?qū)ο笠恢币詠?lái)都是被認(rèn)為最佳的編程方式,如果每個(gè)人的代碼風(fēng)格都相似,維護(hù)、查看起來(lái)就非常的方便。
但是,我想在介紹面向?qū)ο笾埃葋?lái)回憶一下 JS 中的繼承(實(shí)現(xiàn)我們放到最后再說(shuō))。
入門(mén)級(jí)的面向?qū)ο?/b>提到繼承,我首先想到的就是用 new 來(lái)實(shí)現(xiàn)。還是以例子為主吧,人->學(xué)生->小學(xué)生,在 JS 中有原型鏈這么一說(shuō),__proto__ 和 prototype ,對(duì)于原型鏈就不過(guò)多闡述,如果不懂的可以自己去查閱一些資料。
在這里,我還是要說(shuō)明一下 JS 中的 new 構(gòu)造,比如 var student = new Person(name),實(shí)際上有三步操作:
var student = {}; student.__proto__ = Person.prototype; Person.call(student, name)
得到的 student 是一個(gè)對(duì)象,__proto__執(zhí)行 Person 的 prototype,Person.call 相當(dāng)于 constructor。
function Person(name){ this.name = name; } Person.prototype.Say = function(){ console.log(this.name + " can say!"); } var ming = new Person("xiaoming"); console.log(ming.__proto__ == Person.prototype) //true new的第二步結(jié)果 console.log(ming.name) // "xiaoming" new 的第三步結(jié)果 ming.Say() // "xiaoming can say!" proto 向上追溯的結(jié)果
利用 __proto__ 屬性的向上追溯,可以實(shí)現(xiàn)一個(gè)基于原型鏈的繼承。
function Person(name){ this.name = name; } Person.prototype.Say = function(){ console.log(this.name + " can say!"); } function Student(name){ Person.call(this, name); //Person 的屬性賦值給 Student } Student.prototype = new Person(); //順序不能反,要在最前面 Student.prototype.DoHomeWork = function(){ console.log(this.name + " can do homework!"); } var ming = new Student("xiaoming"); ming.DoHomeWork(); //"xiaoming can do homework!" ming.Say(); //"xiaoming can say!"
大概剛認(rèn)識(shí)原型鏈的時(shí)候,我也就只能寫(xiě)出這樣的水平了,我之前的文章。
打開(kāi)調(diào)試工具,看一下 ming 都有哪些東西:
ming name: "xiaoming" __proto__: Person DoHomeWork: () name: undefined //注意這里多了一個(gè) name 屬性 __proto__: Object Say: () constructor: Person(name) __proto__: Object
當(dāng)調(diào)用 ming.Say() 的時(shí)候,剛好 ming.__proto__.__proto__ 有這個(gè)屬性,這就是鏈?zhǔn)秸{(diào)用的原理,一層一層向下尋找。
這就是最簡(jiǎn)單的繼承了。
面向?qū)ο蟮倪M(jìn)階來(lái)看一看剛才那種做法的弊端。
沒(méi)有實(shí)現(xiàn)傳統(tǒng)面向?qū)ο笤撚械?super 方法來(lái)調(diào)用父類(lèi)方法,鏈?zhǔn)胶?super 方法相比還是有一定缺陷的;
造成過(guò)多的原型屬性(name),constructor 丟失(constructor 是一個(gè)非常重要的屬性,MDN)。
因?yàn)殒準(zhǔn)绞且粚訉酉蛏蠈ふ遥勒业綖橹?,很明顯 super 直接調(diào)用父類(lèi)更具有優(yōu)勢(shì)。
// 多了原型屬性 console.log(ming.__proto__) // {name: undefined}
為什么會(huì)多一個(gè) name,原因是因?yàn)槲覀儓?zhí)行了 Student.prototype = new Person();,而 new 的第三步會(huì)執(zhí)行一個(gè) call 的函數(shù),會(huì)使得 Student.prototype.name = undefined,恰好 ming.__proto__ 指向 Student 的 prototype,用了 new 是無(wú)法避免的。
// 少了 constructor console.log(ming.constructor == Person) //true console.log(ming.constructor == Student) // false
這也很奇怪,明明 ming 是繼承與 Student,卻返回 false,究其原因,Student.prototype 的 constructor 方法丟失,向上找到了 Student.prototype.__proto__ 的 constructor 方法。
再找原因,這句話導(dǎo)致了 Student.prototype 的 constructor 方法丟失:
Student.prototype = new Person();
在這句話之前打一個(gè)斷點(diǎn),曾經(jīng)是有的,只是被替換掉了:
找到了問(wèn)題所在,現(xiàn)在來(lái)改進(jìn):
// fn 用來(lái)排除多余的屬性(name) var fn = function(){}; fn.prototype = Person.prototype; Student.prototype = new fn(); // 重新添上 constructor 屬性 Student.prototype.constructor = Student;
用上面的繼承代碼替換掉之前的 Student.prototype = new Person();
面向?qū)ο蟮姆庋b我們不能每一次寫(xiě)代碼的時(shí)候都這樣寫(xiě)這么多行來(lái)繼承吧,所以,于情于理,還是來(lái)進(jìn)行簡(jiǎn)單的包裝:
function classInherit(subClass, parentClass){ var fn = function(){}; fn.prototype = parentClass.prototype; subClass.prototype = new fn(); subClass.prototype.constructor = subClass; } classInherit(Student, Person);
哈哈,所謂的包裝,就是重抄一下代碼。
上面的問(wèn)題只是簡(jiǎn)單的解決了多余屬性和 constructor 丟失的問(wèn)題,而 super 問(wèn)題仍然沒(méi)有改進(jìn)。
舉個(gè)栗子,來(lái)看看 super 的重要,每個(gè)人都會(huì)睡覺(jué),sleep 函數(shù)是人的一個(gè)屬性,學(xué)生分為小學(xué)生和大學(xué)生,小學(xué)生晚上 9 點(diǎn)睡覺(jué),大學(xué)生 12 點(diǎn)睡覺(jué),于是:
Person.prototype.Sleep = function(){ console.log("Sleep!"); } function E_Student(){}; //小學(xué)生 function C_Student(){}; //大學(xué)生 classInherit(E_Student, Person); classInherit(C_Student, Person); //重寫(xiě) Sleep 方法 E_Student.prototype.Sleep = function(){ console.log("Sleep!"); console.log("Sleep at 9 clock"); } C_Student.prototype.Sleep = function(){ console.log("Sleep!"); console.log("Sleep at 12 clock"); }
對(duì)于 Sleep 方法,顯得比較混亂,而我們想要通過(guò) super,直接調(diào)用父類(lèi)的函數(shù):
E_Student.prototype.Sleep = function(){ this._super(); //super 方法 console.log("Sleep at 9 clock"); } C_Student.prototype.Sleep = function(){ this._super(); //super 方法 console.log("Sleep at 12 clock"); }
不知道對(duì) super 的理解正不正確,總感覺(jué)怪怪的,歡迎指正!
來(lái)看下 JQuery 之父是如何 class 的面向?qū)ο螅脑谶@,源碼如下。
/* Simple JavaScript Inheritance * By John Resig http://ejohn.org/ * MIT Licensed. */ // Inspired by base2 and Prototype (function(){ // initializing 開(kāi)關(guān)很巧妙的來(lái)實(shí)現(xiàn)調(diào)用原型而不構(gòu)造,還有回掉 var initializing = false, fnTest = /xyz/.test(function(){xyz;}) ? /_super/ : /.*/; // The base Class implementation (does nothing) // 全局,this 指向 window,最大的父類(lèi) this.Class = function(){}; // Create a new Class that inherits from this class // 繼承的入口 Class.extend = function(prop) { //保留當(dāng)前類(lèi),一般是父類(lèi)的原型 var _super = this.prototype; // Instantiate a base class (but only create the instance, // don"t run the init constructor) //開(kāi)關(guān) 用來(lái)使原型賦值時(shí)不調(diào)用真正的構(gòu)成流程 initializing = true; var prototype = new this(); initializing = false; // Copy the properties over onto the new prototype for (var name in prop) { // Check if we"re overwriting an existing function //對(duì)函數(shù)判斷,將屬性套到子類(lèi)上 prototype[name] = typeof prop[name] == "function" && typeof _super[name] == "function" && fnTest.test(prop[name]) ? (function(name, fn){ //用閉包來(lái)存儲(chǔ) return function() { var tmp = this._super; // Add a new ._super() method that is the same method // but on the super-class this._super = _super[name]; // The method only need to be bound temporarily, so we // remove it when we"re done executing //實(shí)現(xiàn)同名調(diào)用 var ret = fn.apply(this, arguments); this._super = tmp; return ret; }; })(name, prop[name]) : prop[name]; } // 要返回的子類(lèi) function Class() { // All construction is actually done in the init method if ( !initializing && this.init ) this.init.apply(this, arguments); } //前面介紹過(guò)的,繼承 Class.prototype = prototype; Class.prototype.constructor = Class; Class.extend = arguments.callee; return Class; }; })();
這個(gè)時(shí)候就可以很輕松的實(shí)現(xiàn)面向?qū)ο?,使用如下?/p>
var Person = Class.extend({ init: function(name){ this.name = name; }, Say: function(name){ console.log(this.name + " can Say!"); }, Sleep: function(){ console.log(this.name + " can Sleep!"); } }); var Student = Person.extend({ init: function(name){ this._super("Student-" + name); }, Sleep: function(){ this._super(); console.log("And sleep early!"); }, DoHomeWork: function(){ console.log(this.name + " can do homework!"); } }); var p = new Person("Li"); p.Say(); //"Li can Say!" p.Sleep(); //"Li can Sleep!" var ming = new Student("xiaoming"); ming.Say(); //"Student-xiaoming can Say!" ming.Sleep();//"Student-xiaoming can Sleep!" // "And sleep early!" ming.DoHomeWork(); //"Student-xiaoming can do homework!"
除了 John Resig 的 super 方法,很多人都做了嘗試,不過(guò)我覺(jué)得 John Resig 的實(shí)現(xiàn)方式非常的妙,也比較貼近 super 方法,我本人也用源碼調(diào)試了好幾個(gè)小時(shí),才勉強(qiáng)能理解。John Resig 的頭腦真是令人佩服。
ES6 中的 class在 JS 中,class 從一開(kāi)始就屬于關(guān)鍵字,在 ES6 終于可以使用 class 來(lái)定義類(lèi)。比如:
class Point { constructor(x, y){ this.x = x; this.y = y; } toString(){ return "(" + this.x + "," + this.y + ")"; } } var p = new Point(3, 4); console.log(p.toString()); //"(3,4)"
更多有關(guān)于 ES6 中類(lèi)的使用請(qǐng)參考阮一峰老師的 Class基本語(yǔ)法。
其實(shí) ES6 中的 class 只是寫(xiě)對(duì)象原型的時(shí)候更方便,更像面向?qū)ο螅琧lass 的功能 ES5 完全可以做到,比如就上面的例子:
typeof Point; //"function" Point.prototype; /* |Object |--> constructor: function (x, y) |--> toString: function() |--> __proto__: Object */
和用 ES5 實(shí)現(xiàn)的真的沒(méi)有什么差別,反而現(xiàn)在流行的一些庫(kù)比 ES6 的 class 能帶來(lái)更好的效益。
回到最開(kāi)始的組件問(wèn)題那么,說(shuō)了這么多面向?qū)ο?,現(xiàn)在回到最開(kāi)始的那個(gè)組件的實(shí)現(xiàn)——如何用面向?qū)ο髞?lái)實(shí)現(xiàn)。
還是利用 John Resig 構(gòu)造 class 的方法:
var JudgeInput = Class.extend({ init: function(config){ this.input = document.getElementById(config.id); this._bind(); }, _getValue: function(){ return this.input.value; }, _render: function(){ var value = this._getValue(); if(!document.getElementById("show")){ var append = document.createElement("span"); append.setAttribute("id", "show"); input.parentNode.appendChild(append); } var show = document.getElementById("show"); if(/^[0-9a-zA-Z]+$/.exec(value)){ show.innerHTML = "Pass!"; }else{ show.innerHTML = "Failed!"; } }, _bind: function(){ var self = this; self.input.addEventListener("keyup", function(){ self._render(); }); } }); window.onload = function(){ new JudgeInput({id: "input"}); }
但是,這樣子,基本功能算是實(shí)現(xiàn)了,關(guān)鍵是不好擴(kuò)展,沒(méi)有面向?qū)ο蟮木?。所以,針?duì)目前的情況,我們準(zhǔn)備建立一個(gè) Base 基類(lèi),init 表示初始化,render 函數(shù)表示渲染,bind 函數(shù)表示綁定,destory 用來(lái)銷(xiāo)毀,同時(shí) get、set 方法提供獲得和更改屬性:
var Base = Class.extend({ init: function(config){ this._config = config; this.bind(); }, get: function(key){ return this._config[key]; }, set: function(key, value){ this._config[key] = value; }, bind: function(){ //以后構(gòu)造 }, render: function(){ //以后構(gòu)造 }, destory: function(){ //定義銷(xiāo)毀方法 } });
基于這個(gè) Base,我們修改 JudgeInput 如下:
var JudgeInput = Base.extend({ _getValue: function(){ return this.get("input").value; }, bind: function(){ var self = this; self.get("input").addEventListener("keyup", function(){ self.render(); }); }, render: function(){ var value = this._getValue(); if(!document.getElementById("show")){ var append = document.createElement("span"); append.setAttribute("id", "show"); input.parentNode.appendChild(append); } var show = document.getElementById("show"); if(/^[0-9a-zA-Z]+$/.exec(value)){ show.innerHTML = "Pass!"; }else{ show.innerHTML = "Failed!"; } } }); window.onload = function(){ new JudgeInput({input: document.getElementById("input")}); }
比如,我們后期修改了判斷條件,只有當(dāng)長(zhǎng)度為 5-10 的時(shí)候才會(huì)返回 success,這個(gè)時(shí)候能很快定位到 JudgeInput 的 render 函數(shù):
render: function(){ var value = this._getValue(); if(!document.getElementById("show")){ var append = document.createElement("span"); append.setAttribute("id", "show"); input.parentNode.appendChild(append); } var show = document.getElementById("show"); //修改正則即可 if(/^[0-9a-zA-Z]{5,10}$/.exec(value)){ show.innerHTML = "Pass!"; }else{ show.innerHTML = "Failed!"; } }
以我目前的能力,只能理解到這里了。
總結(jié)從一個(gè)組件出發(fā),一步一步爬坑,又跑去介紹 JS 中的面向?qū)ο?,如果你能看到最后,那么你就可?dòng)手一步一步實(shí)現(xiàn)一個(gè) JQuery 了,純調(diào)侃。
關(guān)于一個(gè)組件的寫(xiě)法,從入門(mén)級(jí)到最終版本,一波三折,不僅要考慮代碼的實(shí)用性,還要兼顧后期維護(hù)。JS 中實(shí)現(xiàn)面向?qū)ο?,剛接觸 JS 的時(shí)候,我能用簡(jiǎn)單的原型鏈來(lái)實(shí)現(xiàn),后來(lái)看了一些文章,發(fā)現(xiàn)了不少問(wèn)題,在看 John Resig 的 Class,感觸頗深。還好,現(xiàn)在目的是實(shí)現(xiàn)了,共勉!
參考制作組件的例子
javascript oo實(shí)現(xiàn)
John Resig: Simple JavaScript Inheritance
歡迎來(lái)我博客一起交流。
2016-11-13
經(jīng)指正,已經(jīng)將錯(cuò)誤的 supper 改成 super。
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/80719.html
摘要:上面的代碼小書(shū)經(jīng)過(guò)編譯以后會(huì)變成小書(shū)會(huì)構(gòu)建一個(gè)對(duì)象里描述你結(jié)構(gòu)的信息,包括標(biāo)簽名屬性還有子元素等。第二個(gè)原因是,有了這樣一個(gè)對(duì)象。負(fù)責(zé)把這個(gè)用來(lái)描述信息的對(duì)象變成元素,并且渲染到面上。下一節(jié)中我們將介紹小書(shū)組件的方法。 React.js 小書(shū) Lesson6 - 使用 JSX 描述 UI 信息 本文作者:胡子大哈本文原文:http://huziketang.com/books/rea...
摘要:好好打基礎(chǔ),然后多嘗試不同風(fēng)格的框架,因?yàn)橹挥袊L試過(guò)后才能理解比如徐飛提到的各種權(quán)衡,也只有嘗試過(guò)后才能知道哪個(gè)能真正提升自己的開(kāi)發(fā)效率。 今天看了幾篇關(guān)于這三個(gè)主流框架的PK,如標(biāo)題:react.js,angular.js,vue.js學(xué)習(xí)哪個(gè)好?相信每個(gè)人都有這種問(wèn)題。 現(xiàn)在的前端框架層出不窮,作為前端開(kāi)發(fā)者何去何從?fackbook的react.js盛世火熱,react nati...
摘要:使用異步編程,有一個(gè)事件循環(huán)。它作為面向?qū)ο缶幊痰奶娲桨?,其中?yīng)用狀態(tài)通常與對(duì)象中的方法搭配并共享。在用面向?qū)ο缶幊虝r(shí)遇到不同的組件競(jìng)爭(zhēng)相同的資源的時(shí)候,更是如此。 翻譯:瘋狂的技術(shù)宅原文:https://www.indeed.com/hire/i... 本文首發(fā)微信公眾號(hào):jingchengyideng歡迎關(guān)注,每天都給你推送新鮮的前端技術(shù)文章 不管你是面試官還是求職者,里面...
摘要:設(shè)計(jì)模式是以面向?qū)ο缶幊虨榛A(chǔ)的,的面向?qū)ο缶幊毯蛡鹘y(tǒng)的的面向?qū)ο缶幊逃行┎顒e,這讓我一開(kāi)始接觸的時(shí)候感到十分痛苦,但是這只能靠自己慢慢積累慢慢思考。想繼續(xù)了解設(shè)計(jì)模式必須要先搞懂面向?qū)ο缶幊?,否則只會(huì)讓你自己更痛苦。 JavaScript 中的構(gòu)造函數(shù) 學(xué)習(xí)總結(jié)。知識(shí)只有分享才有存在的意義。 是時(shí)候替換你的 for 循環(huán)大法了~ 《小分享》JavaScript中數(shù)組的那些迭代方法~ ...
摘要:還可以在某個(gè)實(shí)例中注冊(cè)只有自己能使用的組件。當(dāng)在一個(gè)組件中,使用了其他自定義組件時(shí),就會(huì)利用子組件的屬性和事件來(lái)和父組件進(jìn)行數(shù)據(jù)交流。正確的做法是,在父組件中綁定屬性值時(shí),加上修飾符。 2019-06-20更新: Vue2.6已經(jīng)更新了關(guān)于內(nèi)容插槽和作用域插槽的API和用法,為了不誤導(dǎo)大家,我把插槽的內(nèi)容刪除了。詳情請(qǐng)看官網(wǎng) 2018-07-19更新: 更新作用域插槽的屬性: sco...
閱讀 2670·2023-04-26 02:44
閱讀 8656·2021-11-22 14:44
閱讀 2131·2021-09-27 13:36
閱讀 2528·2021-09-08 10:43
閱讀 692·2019-08-30 15:56
閱讀 1400·2019-08-30 15:55
閱讀 2895·2019-08-28 18:12
閱讀 2837·2019-08-26 13:50