Kaynağa Gözat

添加防范

yjp 1 yıl önce
ebeveyn
işleme
a49124dfa1
1 değiştirilmiş dosya ile 4 ekleme ve 0 silme
  1. 4 0
      http_binding/response/response.go

+ 4 - 0
http_binding/response/response.go

@@ -81,6 +81,10 @@ func SendMapResponse(c *binding_context.Context, statusCode int, data map[string
 	c.JSON(statusCode, msgRespMap)
 }
 
+func SendRawMapResponse(c *binding_context.Context, statusCode int, data map[string]any, err error) {
+	c.JSON(statusCode, data)
+}
+
 type MsgResponse struct {
 	Success bool   `json:"success"`
 	ErrCode int    `json:"errCode"`