微信小程序底層的實(shí)現(xiàn)原理開(kāi)發(fā)實(shí)戰(zhàn)說(shuō)明,今天hishop為大家整理分享。
其實(shí)這篇文章應(yīng)該算是一篇拾遺。
從map組件說(shuō)起
在今天公布的開(kāi)發(fā)文檔里,我們知道使用一個(gè)地圖組件的時(shí)候是這樣子的:
<map longitude="23.099994" latitude="113.324520" markers="{{markers}}" covers="{{covers}}" style="width: 375px; height: 200px;"></map>
在之前的文件里,我們提到過(guò)這個(gè)文件是wxml文件,然后我們要用wxcc將其轉(zhuǎn)換為virtual dom中的方法,如:
它就會(huì)返回一個(gè)js的方法,如:
/*v0.7cc_20160919*/
var $gwxc
var $gaic={}
$gwx=function(path,global){
function _(a,b){b&&a.children.push(b);}
function _n(tag){$gwxc++;if($gwxc>=16000){throw 'enough, dom limit exceeded, you don\'t do stupid things, do you?'};return {tag:tag.substr(0,3)=='wx-'?tag:'wx-'+tag,attr:{},children:[]}}
function _s(scope,env,key){return typeof(scope[key])!='undefined'?scope[key]:env[key]}
...
插播一句:上面有一個(gè)count,很有意思$gwxc > 16000,這個(gè)就是dom數(shù)的count。超了就來(lái)個(gè)異常:enough, dom limit exceeded, you don't do stupid things, do you?,中文意思就是:你個(gè)愚蠢的人類,你是一個(gè)前端開(kāi)發(fā)人員嗎?
隨后,在瀏覽器里調(diào)試一下:
JSON.stringify($gwx('map.wxml')('test'))
在小程序中是要這樣調(diào)用的:
document.dispatchEvent(new CustomEvent("generateFuncReady", {
detail: {
generateFunc: $gwx('map.wxml')
}
}))
就會(huì)返回下面的結(jié)果:
{
"children": [
{
"attr": {
"covers": "",
"latitude": "113.324520",
"longitude": "23.099994",
"markers": "",
"style": "width: 375px; height: 200px;"
},
"children": [],
"tag": "wx-map"
}
],
"tag": "wx-page"
}
看來(lái)這個(gè)名為wx-map的標(biāo)簽就是微信下的map標(biāo)簽,它是wx-page的children。然后讓我們?cè)赪AWebview中搜索一下,就會(huì)發(fā)現(xiàn)一個(gè)很有意思的代碼:
{
is: "wx-map",
behaviors: ["wx-base", "wx-native"],
template: '<div id="map" style="width: 100%; height: 100%;"></div>',
properties: {
latitude: {type: Number, reflectToAttribute: !0, observer: "latitudeChanged", value: 39.92},
longitude: {type: Number, reflectToAttribute: !0, observer: "longitudeChanged", value: 116.46},
scale: {type: Number, reflectToAttribute: !0, observer: "scaleChanged", scale: 16},
markers: {type: Array, value: [], reflectToAttribute: !1, observer: "markersChanged"},
covers: {type: Array, value: [], reflectToAttribute: !1, observer: "coversChanged"},
_mapId: {type: Number}
}
它的behaviors中有一句:wx-native,這莫非就是傳說(shuō)中的native組件:
順便再看一個(gè)video是不是也是一樣的:
{
is: "wx-video",
behaviors: ["wx-base", "wx-player", "wx-native"],
template: '<div class="container">\n <video id="player" webkit-playsinline style="display: none;"></video>\n <div id="default" class="bar" style="display: none;">\n <div id="button" class$="button {{_buttonType}}"></div>\n <div class="time currenttime" parse-text-content>{{_currentTime}}</div>\n <div id="progress" class="progress">\n <div id="ball" class="ball" style$="left: {{_progressLeft}}px;">\n <div class="inner"></div>\n </div>\n <div class="inner" style$="width: {{_progressLength}}px;"></div>\n </div>\n <div class="time duration" parse-text-content>{{_duration}}</div>\n <div id="fullscreen" class="fullscreen"></div>\n </div>\n </div>\n <div id="fakebutton"></div>',
properties: {
_videoId: {type: Number},
_progressLeft: {type: Number, value: -22},
_progressLength: {type: Number, value: 0}
}
好了,你那么聰明,我就這么說(shuō)一半好了,剩下你自己去猜。
可以肯定的是:
map標(biāo)簽在開(kāi)發(fā)的時(shí)候會(huì)變成HTML + CSS
map標(biāo)簽在微信上可以使用類似于Cordova的形式調(diào)用 Native組件
再接著說(shuō),virtual dom的事,回到示例代碼里的map.js:
Page({
data: {
markers: [{
latitude: 23.099994,
longitude: 113.324520,
name: 'T.I.T 創(chuàng)意園',
desc: '我現(xiàn)在的位置'
}],
covers: [{
latitude: 23.099794,
longitude: 113.324520,
icaonPath: '../images/car.png',
rotate: 10
}, {
latitude: 23.099298,
longitude: 113.324129,
iconPath: '../images/car.png',
rotate: 90
}]
}
})
js里只放置了data,剩下的都是依據(jù)上面的值變動(dòng)的observer,如:
_updatePosition
_hiddenChanged
latitudeChanged
longitudeChanged
scaleChanged
coversChanged
...
這種代碼的感覺(jué)比React更進(jìn)了一步的節(jié)奏,本來(lái)你還需要編碼來(lái)觀察state,現(xiàn)在只需要state變動(dòng)了就可以了。。。23333....,你們這些程序員都會(huì)被fire的。
好了,這里差不多就這樣了~~。
重新審視WXWebview.js
于是,我重新逛逛WXWebview.js,發(fā)現(xiàn)這個(gè)文件里面不只有component的內(nèi)容,還有:
reportSDK
webviewSDK ??
virtual_dom
exparser
wx-components.js
wx-components.css
等等,你是不是已經(jīng)猜到我在說(shuō)什么了,上一篇中我們說(shuō)到了PageFrame:
<!-- percodes -->
<!--{{WAWebview}}-->
<!--{{reportSDK}}-->
<!--{{webviewSDK}}-->
<!--{{exparser}}-->
<!--{{components_js}}-->
<!--{{virtual_dom}}-->
<!--{{components_css}}-->
<!--{{allWXML}}-->
<!--{{eruda}}-->
<!--{{style}}-->
<!--{{currentstyle}}-->
<!--{{generateFunc}}-->
在之前的想法里,我覺(jué)得我必須要集齊上面的SDK,才能招喚中神龍。后來(lái),我看到了這句:
isDev ? {
"<!--{{reportSDK}}-->": "reporter-sdk.js",
"<!--{{webviewSDK}}-->": "webview-sdk.js",
"<!--{{virtual_dom}}-->": "virtual_dom.js",
"<!--{{exparser}}-->": "exparser.js",
"<!--{{components_js}}-->": "wx-components.js",
"<!--{{components_css}}-->": "wx-components.css"
} : {"<!--{{WAWebview}}-->": "WAWebview.js"}
如果不是開(kāi)發(fā)環(huán)境就使用WAWebview.js,在開(kāi)發(fā)環(huán)境中使用使用xxSDK,那么生產(chǎn)環(huán)境是怎么回事?如果是在開(kāi)發(fā)環(huán)境會(huì)去下載最新的SDK,好像不對(duì)~~,哈哈。。
我猜這部分,我需要一個(gè)內(nèi)測(cè)id,才能猜出這個(gè)答案。
有意思的是,IDE會(huì)對(duì)比version.json,然后去獲取最新的,用于預(yù)覽?
{
"WAService.js": 2016092000,
"WAWebview.js": 2016092000,
"wcc": 2016092000,
"wcsc": 2016092000
}
上面已經(jīng)解釋清楚了WAWebview的功能了,那么WAService.js呢——就是封裝那些API的,如downloadFile:
uploadFile: function (e) {
u("uploadFile", e, {url: "", filePath: "", name: ""}) && (0, s.invokeMethod)("uploadFile", e)
}, downloadFile: function (e) {
u("downloadFile", e, {url: ""}) && (0, s.invokeMethod)("downloadFile", e)
}
這一點(diǎn)上仍然相當(dāng)有趣,在我們開(kāi)發(fā)的時(shí)候仍然是WAWebview做了相當(dāng)多的事,而它和WAService的打包是分離的(微信小程序開(kāi)發(fā)前準(zhǔn)備工作與環(huán)境流程 )。
那么,我們從理論上來(lái)說(shuō),只需要有WAWebview就可以Render頁(yè)面了。