fix
This commit is contained in:
parent
4064cc8c2b
commit
90e0169eb7
|
@ -452,8 +452,9 @@ func (w *wsConnectItem) sendToInChan(data []byte) {
|
|||
// 格式化为websocket标准返回格式
|
||||
func (w *wsConnectItem) respondDataFormat(msgType constants.Websocket, data interface{}) []byte {
|
||||
d := websocket_data.DataTransferData{
|
||||
T: msgType,
|
||||
D: data,
|
||||
T: msgType,
|
||||
D: data,
|
||||
OpenDebug: w.debug != nil,
|
||||
}
|
||||
b, _ := json.Marshal(d)
|
||||
return b
|
||||
|
|
|
@ -4,8 +4,9 @@ import "fusenapi/constants"
|
|||
|
||||
// websocket数据交互基本数据类型
|
||||
type DataTransferData struct {
|
||||
T constants.Websocket `json:"t"` //消息类型
|
||||
D interface{} `json:"d"` //传递的消息
|
||||
T constants.Websocket `json:"t"` //消息类型
|
||||
D interface{} `json:"d"` //传递的消息
|
||||
OpenDebug bool `json:"open_debug"` //是否开启debug
|
||||
}
|
||||
|
||||
// websocket接受要云渲染处理的数据
|
||||
|
|
Loading…
Reference in New Issue
Block a user