Gin(后端)和 Vue3(前端)中实现 Server-Sent Events(SSE)推送

Gin(后端)和 Vue3(前端)中实现 Server-Sent Events(SSE)推送,主要分为以下几个步骤:

后端(Gin)实现 SSE

Gin 框架可以使用 c.SSEvent 方法来推送 SSE 事件。

1. 安装 Gin

确保你的 Go 项目已安装 gin

sh 复制代码
go get -u github.com/gin-gonic/gin
2. Gin SSE 服务器

创建一个 SSE 端点 /sse,用于持续向前端推送消息:

go 复制代码
package main

import (
	"fmt"
	"net/http"
	"time"

	"github.com/gin-gonic/gin"
)

func main() {
	r := gin.Default()

	// SSE 推送
	r.GET("/sse", func(c *gin.Context) {
		// 设置 SSE 相关 Header
		c.Writer.Header().Set("Content-Type", "text/event-stream")
		c.Writer.Header().Set("Cache-Control", "no-cache")
		c.Writer.Header().Set("Connection", "keep-alive")

		// 监听客户端断开连接
		notify := c.Writer.CloseNotify()

		// 模拟持续推送
		for {
			select {
			case <-notify:
				fmt.Println("客户端断开连接")
				return
			default:
				// 发送数据
				c.SSEvent("message", gin.H{"time": time.Now().Format("15:04:05")})
				c.Writer.Flush() // 立即刷新
				time.Sleep(2 * time.Second)
			}
		}
	})

	r.Run(":8080")
}

前端(Vue3 + Composition API)监听 SSE

Vue3 通过 EventSource 监听 SSE 事件。

1. Vue3 组件实现

创建 SseComponent.vue

vue 复制代码
<template>
  <div>
    <h2>SSE 推送数据</h2>
    <p v-if="message">时间:{{ message }}</p>
    <button @click="stopSSE">断开连接</button>
  </div>
</template>

<script setup>
import { ref, onMounted, onUnmounted } from "vue";

let eventSource = null;
const message = ref("");

const startSSE = () => {
  eventSource = new EventSource("http://localhost:8080/sse");

  eventSource.onmessage = (event) => {
    const data = JSON.parse(event.data);
    message.value = data.time;
  };

  eventSource.onerror = () => {
    console.error("SSE 连接错误");
    eventSource.close();
  };
};

const stopSSE = () => {
  if (eventSource) {
    eventSource.close();
    console.log("SSE 连接已关闭");
  }
};

onMounted(startSSE);
onUnmounted(stopSSE);
</script>

3. 运行 Gin 服务器和 Vue 前端

启动 Gin 服务器:

sh 复制代码
go run main.go

启动 Vue3:

sh 复制代码
npm run dev

然后在浏览器访问 Vue 页面,即可看到 SSE 推送的消息不断更新。


这样,我们就完成了 Gin + Vue3 的 SSE 实时推送 ,适用于实时通知、股票行情、日志监控等场景 🎉。

相关推荐
夜郎king4 分钟前
HTML5 SVG 实现日出日落动画与实时天气可视化
前端·html5·svg 日出日落
夏幻灵1 小时前
HTML5里最常用的十大标签
前端·html·html5
Mr Xu_1 小时前
Vue 3 中 watch 的使用详解:监听响应式数据变化的利器
前端·javascript·vue.js
未来龙皇小蓝1 小时前
RBAC前端架构-01:项目初始化
前端·架构
程序员agions2 小时前
2026年,微前端终于“死“了
前端·状态模式
万岳科技系统开发2 小时前
食堂采购系统源码库存扣减算法与并发控制实现详解
java·前端·数据库·算法
程序员猫哥_2 小时前
HTML 生成网页工具推荐:从手写代码到 AI 自动生成网页的进化路径
前端·人工智能·html
龙飞052 小时前
Systemd -systemctl - journalctl 速查表:服务管理 + 日志排障
linux·运维·前端·chrome·systemctl·journalctl
我爱加班、、2 小时前
Websocket能携带token过去后端吗
前端·后端·websocket
AAA阿giao2 小时前
从零拆解一个 React + TypeScript 的 TodoList:模块化、数据流与工程实践
前端·react.js·ui·typescript·前端框架