Commit b3f0438b by zhengqiuyun86

返回封装优化

parent 01c86bd1
...@@ -65,21 +65,9 @@ func SuccessData(c *gin.Context, data interface{}) { ...@@ -65,21 +65,9 @@ func SuccessData(c *gin.Context, data interface{}) {
logEnd(c, resp) logEnd(c, resp)
} }
type WxResponse struct { func SuccessString(c *gin.Context, format string, values ...interface{}) {
Code string `json:"code"` c.String(http.StatusOK, format, values)
Message string `json:"message"` logEnd(c, fmt.Sprintf(format, values))
}
func WxSuccess(c *gin.Context) {
resp := WxResponse{"SUCCESS", "成功"}
c.JSON(http.StatusOK, resp)
logEnd(c, resp)
}
func AliSuccess(c *gin.Context) {
resp := "success"
c.JSON(http.StatusOK, resp)
logEnd(c, resp)
} }
func logEnd(c *gin.Context, data interface{}) { func logEnd(c *gin.Context, data interface{}) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment