提交 f70012ef 编写于 作者: crlfe's avatar crlfe 😲

update: websocket.md

上级 9e31151a
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
WebSocket 是一种协议,可通过单个 TCP 连接在网络客户端与网络服务器之间提供全双工通信通道。WebSocket 协议使用 HTTP 协议在客户端与服务器之间建立连。 WebSocket 是一种协议,可通过单个 TCP 连接在网络客户端与网络服务器之间提供全双工通信通道。WebSocket 协议使用 HTTP 协议在客户端与服务器之间建立连。
云函数WebSocket运行原理为客户端请求WebSocket服务器,由WebSocket服务器处理连接后转发给指定的云函数,调用云函数内不同的WebSocket事件完成事件触发与执行。
## WebSocket 事件 ## WebSocket 事件
> >
> WebSocket 支持在云函数与云对象中使用。 > WebSocket 支持在云函数与云对象中使用。
...@@ -34,14 +36,14 @@ module.exports = { ...@@ -34,14 +36,14 @@ module.exports = {
**入参参数** **入参参数**
event **event**
|参数|类型|说明| |参数|类型|说明|
|---|---|---| |---|---|---|
|connectionId|`String`|连接ID| |connectionId|`String`|连接ID|
|query|`Object`|请求时的query参数| |query|`Object`|请求时的query参数|
context **context**
云函数 context [参考](https://doc.dcloud.net.cn/uniCloud/cf-callfunction.html#context) 云函数 context [参考](https://doc.dcloud.net.cn/uniCloud/cf-callfunction.html#context)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册