baiy / Ctool

程序开发常用工具 chrome / edge / firefox / utools / windows / linux / mac
https://ctool.dev
MIT License
1.47k stars 208 forks source link

Websocket Protobuf #282

Closed howcf closed 1 year ago

howcf commented 1 year ago

支持連結websocket時,以protobuf的payload datatype發送信息(現在好像只是支持json方式發送?)

baiy commented 1 year ago

当前 websocket 使用的是 js 原生的 Websocket 对象 交互消息体是字符串 中间没有做处理

protobuf 需要提前对消息进行编码和解码(序列化算法), 所以暂时无法支持

https://github.com/baiy/Ctool/blob/025fc1bba10722288c99f5200bbbc5fe98c95b09/packages/ctool-core/src/tools/websocket/Websocket.vue#L109-L149