針對(duì)HTML5的Web Worker使用攻略
來(lái)源:易賢網(wǎng) 閱讀:1159 次 日期:2016-07-09 10:45:50
溫馨提示:易賢網(wǎng)小編為您整理了“針對(duì)HTML5的Web Worker使用攻略”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了針對(duì)HTML5的Web Worker使用攻略,特別是結(jié)合worker拿手的JS使用起來(lái)十分有效,需要的朋友可以參考下

Web Workers 是 HTML5 提供的一個(gè)javascript多線程解決方案,我們可以將一些大計(jì)算量的代碼交由web Worker運(yùn)行而不凍結(jié)用戶界面。

一:如何使用Worker

Web Worker的基本原理就是在當(dāng)前javascript的主線程中,使用Worker類(lèi)加載一個(gè)javascript文件來(lái)開(kāi)辟一個(gè)新的線程,起到互不阻塞執(zhí)行的效果,并且提供主線程和新線程之間數(shù)據(jù)交換的接口:postMessage,onmessage。

那么如何使用呢,我們看一個(gè)例子:

JavaScript Code

//worker.js   

onmessage =function (evt){   

  var d = evt.data;//通過(guò)evt.data獲得發(fā)送來(lái)的數(shù)據(jù)   

  postMessage( d );//將獲取到的數(shù)據(jù)發(fā)送會(huì)主線程   

}  

HTML頁(yè)面:test.html

XML/HTML Code

<!DOCTYPE HTML>  

<html>  

<<span style="width: auto; height: auto; float: none;" id="20_nwp"><a style="text-decoration: none;" mpid="20" target="_blank" id="20_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">head</span></a></span>>  

 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>  

 <script type="text/<span style="width: auto; height: auto; float: none;" id="21_nwp"><a style="text-decoration: none;" mpid="21" target="_blank" id="21_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">javascript</span></a></span>">  

//WEB頁(yè)主線程   

var worker =new Worker("worker.js"); //創(chuàng)建一個(gè)Worker對(duì)象并向它傳遞將在新線程中執(zhí)行的腳本的URL   

 worker.postMessage("hello world");     //向worker發(fā)送數(shù)據(jù)   

 worker.onmessage =function(evt){     //接收worker傳過(guò)來(lái)的數(shù)據(jù)<span style="width: auto; height: auto; float: none;" id="22_nwp"><a style="text-decoration: none;" mpid="22" target="_blank" id="22_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">函數(shù)</span></a></span>  

   console.log(evt.<span style="width: auto; height: auto; float: none;" id="23_nwp"><a style="text-decoration: none;" mpid="23" target="_blank" id="23_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">data</span></a></span>);              //輸出worker發(fā)送來(lái)的數(shù)據(jù)   

 }   

 </script>  

 </head>  

 <body></body>  

</html>  

用Chrome瀏覽器打開(kāi)test.html后,控制臺(tái)輸出 ”hello world” 表示程序執(zhí)行成功。

通過(guò)這個(gè)例子我們可以看出使用web worker主要分為以下幾部分

WEB主線程:

1.通過(guò) worker = new Worker( url ) 加載一個(gè)JS文件來(lái)創(chuàng)建一個(gè)worker,同時(shí)返回一個(gè)worker實(shí)例。

2.通過(guò)worker.postMessage( data ) 方法來(lái)向worker發(fā)送數(shù)據(jù)。

3.綁定worker.onmessage方法來(lái)接收worker發(fā)送過(guò)來(lái)的數(shù)據(jù)。

4.可以使用 worker.terminate() 來(lái)終止一個(gè)worker的執(zhí)行。

worker新線程:

1.通過(guò)postMessage( data ) 方法來(lái)向主線程發(fā)送數(shù)據(jù)。

2.綁定onmessage方法來(lái)接收主線程發(fā)送過(guò)來(lái)的數(shù)據(jù)。

二:Worker能做什么

知道了如何使用web worker ,那么它到底有什么用,可以幫我們解決那些問(wèn)題呢。我們來(lái)看一個(gè)fibonacci數(shù)列的例子。

大家知道在數(shù)學(xué)上,fibonacci數(shù)列被以遞歸的方法定義:F0=0,F(xiàn)1=1,F(xiàn)n=F(n-1)+F(n-2)(n>=2,n∈N*),而javascript的常用實(shí)現(xiàn)為:

JavaScript Code

var fibonacci =function(n) {   

    return n <2? n : arguments.callee(n -1) + arguments.callee(n -2);   

};   

//fibonacci(36)  

在chrome中用該方法進(jìn)行39的fibonacci數(shù)列執(zhí)行時(shí)間為19097毫秒 ,而要計(jì)算40的時(shí)候?yàn)g覽器直接提示腳本忙了。

由于javascript是單線程執(zhí)行的,在求數(shù)列的過(guò)程中瀏覽器不能執(zhí)行其它javascript腳本,UI渲染線程也會(huì)被掛起,從而導(dǎo)致瀏覽器進(jìn)入僵死狀態(tài)。使用web worker將數(shù)列的計(jì)算過(guò)程放入一個(gè)新線程里去執(zhí)行將避免這種情況的出現(xiàn)。具體看例子:

JavaScript Code

//fibonacci.js   

var fibonacci =function(n) {   

    return n <2? n : arguments.callee(n -1) + arguments.callee(n -2);   

};   

onmessage =function(event) {   

    var n = parseInt(event.<span style="width: auto; height: auto; float: none;" id="16_nwp"><a style="text-decoration: none;" mpid="16" target="_blank" id="16_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">data</span></a></span>, 10);   

    postMessage(fibonacci(n));   

};  

HTML頁(yè)面:fibonacci.html

XML/HTML Code

<!DOCTYPE HTML>  

<html>  

<<span style="width: auto; height: auto; float: none;" id="11_nwp"><a style="text-decoration: none;" mpid="11" target="_blank" id="11_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">head</span></a></span>>  

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>  

<title>web worker fibonacci</title>  

<script type="text/<span style="width: auto; height: auto; float: none;" id="12_nwp"><a style="text-decoration: none;" mpid="12" target="_blank" id="12_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">javascript</span></a></span>">  

  onload =function(){   

      var worker =new Worker('fibonacci.js');     

      worker.addEventListener('message', function(event) {   

        var timer2 = (new Date()).valueOf();   

           console.log( '結(jié)果:'+event.<span style="width: auto; height: auto; float: none;" id="13_nwp"><a style="text-decoration: none;" mpid="13" target="_blank" id="13_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">data</span></a></span>, '時(shí)間:'+ timer2, '用時(shí):'+ ( timer2  - timer ) );   

      }, false);   

      var timer = (new Date()).valueOf();   

      console.log('開(kāi)始計(jì)算:40','時(shí)間:'+ timer );   

      setTimeout(function(){   

          console.log('定時(shí)器<span style="width: auto; height: auto; float: none;" id="14_nwp"><a style="text-decoration: none;" mpid="14" target="_blank" id="14_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">函數(shù)</span></a></span>在計(jì)算數(shù)列時(shí)執(zhí)行了', '時(shí)間:'+ (new Date()).valueOf() );   

      },1000);   

      worker.postMessage(40);   

      console.log('我在計(jì)算數(shù)列的時(shí)候執(zhí)行了', '時(shí)間:'+ (new Date()).valueOf() );   

  }     

  </script>  

</<span style="width: auto; height: auto; float: none;" id="15_nwp"><a style="text-decoration: none;" mpid="15" target="_blank" id="15_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">head</span></a></span>>  

<body>  

</body>  

</html>  

在Chrome中打開(kāi)fibonacci.html,控制臺(tái)得到如下輸出:

開(kāi)始計(jì)算:40 時(shí)間:1316508212705

我在計(jì)算數(shù)列的時(shí)候執(zhí)行了 時(shí)間:1316508212734

定時(shí)器

XML/HTML Code

<span style="width: auto; height: auto; float: none;" id="9_nwp"><a style="text-decoration: none;" mpid="9" target="_blank" id="9_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">函數(shù)</span></a></span>  

在計(jì)算數(shù)列時(shí)執(zhí)行了 時(shí)間:1316508213735

結(jié)果:102334155 時(shí)間:1316508262820 用時(shí):50115

這個(gè)例子說(shuō)明在worker中執(zhí)行的fibonacci數(shù)列的計(jì)算并不會(huì)影響到主線程的代碼執(zhí)行,完全在自己獨(dú)立的線程中計(jì)算,只是在計(jì)算完成之后將結(jié)果發(fā)回主線程。

利用web worker我們可以在前端執(zhí)行一些復(fù)雜的大量運(yùn)算而不會(huì)影響頁(yè)面的展示,并且不會(huì)彈出惡心的腳本正忙提示。

下面這個(gè)例子使用了web worker來(lái)計(jì)算場(chǎng)景中的像素,場(chǎng)景打開(kāi)時(shí)是一片一片進(jìn)行繪制的,一個(gè)worker只計(jì)算一塊像素值。

http://nerget.com/rayjs-mt/rayjs.html

三:Worker的其他嘗試

我們已經(jīng)知道Worker通過(guò)接收一個(gè)URL來(lái)創(chuàng)建一個(gè)worker,那么我們是否可以利用web worker來(lái)做一些類(lèi)似jsonp的請(qǐng)求呢,大家知道jsonp是通過(guò)插入script標(biāo)簽來(lái)加載json數(shù)據(jù)的,而script元素在加載和執(zhí)行過(guò)程中都是阻塞式的,如果能利用web worker實(shí)現(xiàn)異步加載將會(huì)非常不錯(cuò)。

下面這個(gè)例子將通過(guò) web worker、jsonp、ajax三種不同的方式來(lái)加載一個(gè)169.42KB大小的JSON數(shù)據(jù)

JavaScript Code

// /aj/webWorker/core.js   

function $E(id) {   

    return document.getElementById(id);   

}   

onload =function() {   

    //通過(guò)web worker加載   

    $E('workerLoad').onclick =function() {   

        var url ='http://js.wcdn.cn/aj/mblog/face2';   

        var d = (new Date()).valueOf();   

        var worker =new Worker(url);   

        worker.onmessage =function(obj) {   

            console.log('web worker: '+ ((new Date()).valueOf() - d));   

        };   

    };   

    //通過(guò)jsonp加載   

    $E('jsonpLoad').onclick =function() {   

        var url ='http://js.wcdn.cn/aj/mblog/face1';   

        var d = (new Date()).valueOf();   

        STK.core.io.scriptLoader({   

            method:'post',   

            url : url,   

            onComplete : function() {   

                console.log('jsonp: '+ ((new Date()).valueOf() - d));   

            }   

        });   

    };   

    //通過(guò)<span style="width: auto; height: auto; float: none;" id="8_nwp"><a style="text-decoration: none;" mpid="8" target="_blank" id="8_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">ajax</span></a></span>加載   

    $E('ajaxLoad').onclick =function() {   

        var url ='http://js.wcdn.cn/aj/mblog/face';   

        var d = (new Date()).valueOf();   

        STK.core.io.ajax({   

            url : url,   

            onComplete : function(json) {   

                console.log('ajax: '+ ((new Date()).valueOf() - d));   

            }   

        });   

    };   

};  

HTML頁(yè)面:/aj/webWorker/worker.html

XML/HTML Code

<!DOCTYPE HTML>  

<html>  

<<span style="width: auto; height: auto; float: none;" id="4_nwp"><a style="text-decoration: none;" mpid="4" target="_blank" id="4_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">head</span></a></span>>  

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>  

<title>Worker example: load <span style="width: auto; height: auto; float: none;" id="5_nwp"><a style="text-decoration: none;" mpid="5" target="_blank" id="5_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">data</span></a></span></title>  

<script src="http://js.t.sinajs.cn/STK/js/gaea.1.14.js" type="text/<span style="width: auto; height: auto; float: none;" id="6_nwp"><a style="text-decoration: none;" mpid="6" target="_blank" id="6_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">javascript</span></a></span>"></script>  

<script type="text/javascript" src="http://js.wcdn.cn/aj/webWorker/core.js"></script>  

</head>  

<body>  

    <input type="button" id="workerLoad" value="web worker加載"></input>  

    <input type="button" id="jsonpLoad" value="jsonp加載"></input>  

    <input type="button" id="<span style="width: auto; height: auto; float: none;" id="7_nwp"><a style="text-decoration: none;" mpid="7" target="_blank" id="7_nwl"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">ajax</span></a></span>Load" value="ajax加載"></input>  

</body>  

</html>  

設(shè)置HOST

代碼如下:

127.0.0.1 js.wcdn.cn

通過(guò) http://js.wcdn.cn/aj/webWorker/worker.html 訪問(wèn)頁(yè)面然后分別通過(guò)三種方式加載數(shù)據(jù),得到控制臺(tái)輸出:

代碼如下:

web worker: 174

jsonp: 25

ajax: 38

多試幾次發(fā)現(xiàn)通過(guò)jsonp和ajax加載數(shù)據(jù)的時(shí)間相差不大,而web worker的加載時(shí)間一直處于高位,所以用web worker來(lái)加載數(shù)據(jù)還是比較慢的,即便是大數(shù)據(jù)量情況下也沒(méi)任何優(yōu)勢(shì),可能是Worker初始化新起線程比較耗時(shí)間。除了在加載過(guò)程中是無(wú)阻塞的之外沒(méi)有任何優(yōu)勢(shì)。

那么web worker是否能支持跨域js加載呢,這次我們通過(guò)http://127.0.0.1/aj/webWorker/worker.html 來(lái)訪問(wèn)頁(yè)面,當(dāng)點(diǎn)擊 ”web worker加載” 加載按鈕時(shí)Chrome下無(wú)任何反映,F(xiàn)F6下提示錯(cuò)誤。由此我們可以知道web worker是不支持跨域加載JS的,這對(duì)于將靜態(tài)文件部署到單獨(dú)的靜態(tài)服務(wù)器的網(wǎng)站來(lái)說(shuō)是個(gè)壞消息。

所以web worker只能用來(lái)加載同域下的json數(shù)據(jù),而這方面ajax已經(jīng)可以做到了,而且效率更高更通用。還是讓W(xué)orker做它自己擅長(zhǎng)的事吧。

四:總結(jié)

web worker看起來(lái)很美好,但處處是魔鬼。

我們可以做什么:

1.可以加載一個(gè)JS進(jìn)行大量的復(fù)雜計(jì)算而不掛起主進(jìn)程,并通過(guò)postMessage,onmessage進(jìn)行通信

2.可以在worker中通過(guò)importScripts(url)加載另外的腳本文件

3.可以使用 setTimeout(), clearTimeout(), setInterval(), and clearInterval()

4.可以使用XMLHttpRequest來(lái)發(fā)送請(qǐng)求

5.可以訪問(wèn)navigator的部分屬性

有那些局限性:

1.不能跨域加載JS

2.worker內(nèi)代碼不能訪問(wèn)DOM

3.各個(gè)瀏覽器對(duì)Worker的實(shí)現(xiàn)不大一致,例如FF里允許worker中創(chuàng)建新的worker,而Chrome中就不行

4.不是每個(gè)瀏覽器都支持這個(gè)新特性

更多信息請(qǐng)查看網(wǎng)頁(yè)制作
易賢網(wǎng)手機(jī)網(wǎng)站地址:針對(duì)HTML5的Web Worker使用攻略
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢?yōu)闇?zhǔn)!
相關(guān)閱讀網(wǎng)頁(yè)制作

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類(lèi)型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)