2017-04-23 11 views
0

나는 시간이를 알아 내기 위해 노력 해왔다를 ... 작동하지 않지만, 그것은 단지 아무튼 일하지 마라. 오류 메시지가 없으며 아무것도 표시되지 않습니다.nodejs 서버 측 이벤트 그냥 내가 그것을 설명 다양한 자습서를 사용하여 내 코드에 코드를 복사</p> <p>

클라이언트 :

<script> 
startStream() 
function startStream() 
{ 
    source = new EventSource("/stream") 
    if(typeof(EventSource) !== "undefined") { 
     console.log("streams are supported") 

     source.addEventListener('message', function(e) { 
      console.log(e.data); 
     }, false); 

     source.onerror = function(event) { 
      source.close(); 
     } 
    } else { 
     console.log("no stream support") 
    } 
} 
</script> 

서버 : 여기 사람이 또한 스트림에 대한 문제가 있었다 유래에

http = require('http') 
fs = require('fs') 

var server = http.createServer(function(request, response) 
{ 
    //understand the request 
    var path = request.url 
    if(path == "/") 
     path = "/index.html" 
    console.log("request for "+path) 
    if (path.indexOf("stream") != -1) 
    { 
     console.log("- client requesting stream") 
     response.writeHead(200, {"Content-Type":"text/event-stream", "Cache-Control":"no-cache", "Connection":"keep-alive"}) 
     response.write('\n') 

     var interval = setInterval(function() { 
      console.log("- sending stream data") 
      response.write("data: message") 
      response.write('\n') 
     }, 1000); 

     request.connection.addListener("close", function() { 
       clearInterval(interval); 
     }, false); 
     return 0 
    } 

    var html = fs.readFileSync("index.html","utf-8").toString(); 
    response.writeHead(200, {"Content-Type": "text/html"}) 
    response.write(html) 
    response.end() 
}) 

//wait for requests 
var port = 5001 
server.listen(port) 
console.log("listening on port "+port+"...") 

가, 그 다음 응답 것을 제안했습니다 여기

내가 뭘하는지입니다 .end()를 삽입해야합니다. 그 사람을 위해 일했습니다. 난 그냥 연결이 닫힌 후에 내가 할 때 내가 쓸 수 없다는 오류가 발생합니다. 그것은 ("오류 : 종료 후 쓰기") 마법처럼

서버 출력 :

request for /stream 
- client requesting stream 
- sending stream data 
- sending stream data 
- sending stream data 
- sending stream data 
- sending stream data 

클라이언트 출력 :

streams are supported 

클라이언트 응답 헤더 :

HTTP/1.1 200 OK 
Content-Type: text/event-stream 
Cache-Control: no-cache 
Connection: keep-alive 
Date: Sun, 23 Apr 2017 09:48:04 GMT 
Transfer-Encoding: chunked 

클라이언트 요청 헤더 :

GET /stream HTTP/1.1 
Host: localhost:5000 
User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:53.0) Gecko/20100101 Firefox/53.0 
Accept: text/event-stream 
Accept-Language: en-US,en;q=0.5 
Accept-Encoding: gzip, deflate 
Referer: http://localhost:5000/ 
Cookie: 0f62446157da624a2edb8a2b53d86dc1=de-DE 
Connection: keep-alive 
Pragma: no-cache 
Cache-Control: no-cache 

아무것도 없다 더 곧 질문을 게시 한 후, 마지막으로이

답변

0

좋은 신 외에 네트워크 관리자에서 진행

각 메시지는 최종

response.write("data: message") 
response.write('\n\n') 
에서 n \ 를 포함한다