SSE(Server-Sent Events,服务器发送事件),为特定目的而扩展的 HTTP 协议,用于实现服务器向客户端推送实时数据的单向通信。如果连接断开,浏览器会自动重连,传输的数据基于文本格式。
SSE 的传输属于流式传输,流式传输的定义就是允许数据在发送方和接收方在建立连接之后,以连续的流的形式传输,不需要频繁的断开和建立连接。
几个重点:
node:
const http = require('http');
const server = http.createServer((req, res) => {
if (req.url === '/events') {
res.writeHead(200, {
'Content-Type': 'text/event-stream',
'Cache-Control': 'no-cache',
'Connection': 'keep-alive',
'Access-Control-Allow-Origin': '*'
});
randmoMessage(res);
}
});
server.listen(3000, () => {
console.log('http://localhost:3000');
});
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function randmoMessage(res) {
let time = getRandomInt(2, 5) * 1000;
setTimeout(() => {
res.write(`data: ${JSON.stringify({ interval: time })}\n\n`);
randmoMessage(res);
}, time)
}
html:
SSE
结果:
以前确实是不知道有这么个 API,以后要是有机会,某些场景应该是可以尝试一下。
欢迎关注订阅号 coding个人笔记