진도가 나갈수록 에러가 안뜬다던지 뭉뚱그려져서 나와 원인 파악이 어렵다든지 난이도가 상당히 어렵네요 ㅠㅠ
server.js
...
app.get('/message', loginCheck, function(req, res){
res.writeHead(200, {
"Connection": "keep-alive",
"Content-Type": "text/event-stream",
"Cache-Control": "no-cache",
});
res.write('event: test\n');
res.write('data: 안녕하세요\n\n');
});
...
chat.html
...
$('.list-group-item').click(function(){
clickedChatRoomId = this.dataset.id; //this는 li class="list-group-item" e.target의 역할. 채팅방 ID
console.log(clickedChatRoomId);
eventSource = new EventSource('/message');
eventSource.addEventListener('test', function(e){
console.log(e.data);
})
})
...

클릭시 404에러 로그가 뜹니다