SocketIO–基于WebSocket構(gòu)建跨瀏覽器的實時應(yīng)用_第1頁
SocketIO–基于WebSocket構(gòu)建跨瀏覽器的實時應(yīng)用_第2頁
SocketIO–基于WebSocket構(gòu)建跨瀏覽器的實時應(yīng)用_第3頁
SocketIO–基于WebSocket構(gòu)建跨瀏覽器的實時應(yīng)用_第4頁
全文預(yù)覽已結(jié)束

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)

文檔簡介

1、socket-io-基于 websocket 構(gòu)建跨瀏覽器的實時應(yīng)用socket. 10是一個功能非常強人的框架,能夠幫助你構(gòu)迷茈于websocket的跨瀏覽器的實時應(yīng)用。支持主 流瀏覽器,多種平臺,多種傳輸模式,還可以集合exppress框架構(gòu)建各種功能復(fù)雜的實時應(yīng)用。introducingkhula.co 識夢想殘:google groupsemail:使用示例1、使用node http服務(wù)器服務(wù)端示例代碼:var app = requirec http'). crcatcscrvcr (handler) ,io = requirec socket, io'). liste

2、n(app),fs = requirec fs)5 app. listen(80);6function handler (req, res) fs. readfile(dirname + /index, html, function (err, data) 10 if (err) 11 res. writchcad (500);12 return res. end c error loading index.html);13 1415res. writehead (200);16res. end(data);17);181920io. sockets. onc connection,funct

3、ion (socket) 21socket, emit c news', hello: world );22socket.on c my other event,function (data) 23console, log(data);24);25);客戶端示例代碼:1 script src=/socket. io/socket. io. js/script>2 script3 var socket = io.connect(http:/localhost);4 socket, onc news,function (data) console, log (data);socket

4、, emit (my other event, my: data ); );8 </script>2、使用express 3框架服務(wù)端示例代碼:var app = require (express)(),server = require (,http,). createserver(app) ,io = require ( socket, io) listen (server);5 server.listen (80);678 9app. get(/,function (req, res) res.sendfile (dirname + /index, html);10111213

5、141516io. sockets. onc connection,function (socket) socket, emit (news, hello: world ); socket, on (my other event,function (data)console.log (data);););客戶端示例代碼:1 script src=/socket. io/sockct. io.js>/script>2 <script>3 var socket = io.connect(http:/localhost);4 socket, on c news,function (data)5678console, log(data);my: data );socket, emit ( my other event,);</script>支持的傳輸為了給各個不同的瀏覽器提供實時連接,socket. 10選擇在運行時會自動最有能力的運輸校式,不影響api 的使用。 websocket adobe flash socket ajax長輪詢 ajax多重流 iframe jsonp輪詢支持的瀏覽器桌面端 internet explorer 5.5+ safari 3+ googl

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論