明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

html5中sse服務(wù)器發(fā)送事件EventSource相關(guān)說明

[摘要]本篇文章主要介紹了淺談html5之sse服務(wù)器發(fā)送事件EventSource介紹,具有一定的參考價值,有興趣的可以了解一下前言我前面文章講過數(shù)據(jù)大屏,里面的數(shù)據(jù)時時更新。還有時時更新的股票數(shù)據(jù),F(xiàn)acebook/Twitter 更新、估價更新、新的博文、賽事結(jié)果等等,都需要數(shù)據(jù)時時更新。之前我們一...
本篇文章主要介紹了淺談html5之sse服務(wù)器發(fā)送事件EventSource介紹,具有一定的參考價值,有興趣的可以了解一下

前言

我前面文章講過數(shù)據(jù)大屏,里面的數(shù)據(jù)時時更新。還有時時更新的股票數(shù)據(jù),F(xiàn)acebook/Twitter 更新、估價更新、新的博文、賽事結(jié)果等等,都需要數(shù)據(jù)時時更新。之前我們一般都是請求服務(wù)器,看看有沒有可以更新的數(shù)據(jù)。html5提供了Server-Sent Events方法,通過服務(wù)器發(fā)送事件,更新能夠自動到達(dá)。

Server-Sent Events使用

Server-Sent Events使用很簡單,通過EventSource 對象來接受服務(wù)器端消息。有如下事件:

  • onopen 當(dāng)通往服務(wù)器的連接被打開

  • onmessage 當(dāng)接收到消息

  • onerror 當(dāng)發(fā)生錯誤

檢測 Server-Sent 事件支持


if(typeof(EventSource)!=="undefined")
{
  // 瀏覽器支持 Server-Sent
  // 一些代碼.....
}
else
{
// 瀏覽器不支持 Server-Sent..
}

接收 Server-Sent 事件通知


var source=new EventSource("haorooms_sse.php");
source.onmessage=function(event)
{
    document.getElementById("result").innerHTML+=event.data + "<br>";
};

服務(wù)器端代碼實例


<?php 
header('Content-Type: text/event-stream'); 
header('Cache-Control: no-cache'); 

$time = date('r'); 
echo "data: The server time is: {$time}\n\n"; 
flush(); 
?>

鏈接事件和報錯事件都加上


if(typeof(EventSource)!=="undefined")
{
    var source=new EventSource("server.php");
    source.onopen=function()
    {
         console.log("Connection to server opened.");
    };
    source.onmessage=function(event)
    {

        document.getElementById("result").innerHTML+=event.data + "<br>";
    };
    source.onerror=function()
    {
        console.log("EventSource failed.");
    };
}
else
{
    document.getElementById("result").innerHTML="抱歉,你的瀏覽器不支持 server-sent 事件...";
}

我們會發(fā)現(xiàn),控制臺打印如下:

html5中sse服務(wù)器發(fā)送事件EventSource相關(guān)介紹

不停的進入鏈接、和錯誤,詳情請點擊

那是因為php代碼只是簡單的echo,并沒有連續(xù)輸出,我們把上面php代碼做如下改進


<?php 
header('Content-Type: text/event-stream'); 
header('Cache-Control: no-cache'); 

$time = date('r'); 

  $i = 0;
  $c = $i + 100;
  while (++$i < $c) {
    echo "id: " . $i . "\n";
    echo "data: " . $time. ";\n\n";
    ob_flush();
    flush();
    sleep(1);
  }
?>

就不會出現(xiàn)不停錯誤了!

IE瀏覽器兼容解決方案

我們知道,IE瀏覽器并不支持EventSource,有如下解決方案:

引入


eventsource.min.js

就可以完美解決?梢圆榭雌鋑ithub地址:https://github.com/Yaffle/EventSource 結(jié)合nodejs使用也很方便,直接


npm install event-source-polyfill

就可以了。

以上就是html5中sse服務(wù)器發(fā)送事件EventSource相關(guān)介紹的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


網(wǎng)站建設(shè)是一個廣義的術(shù)語,涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護的網(wǎng)站。