Commit b3f0438b by zhengqiuyun86

返回封装优化

parent 01c86bd1
......@@ -65,21 +65,9 @@ func SuccessData(c *gin.Context, data interface{}) {
logEnd(c, resp)
}
type WxResponse struct {
Code string `json:"code"`
Message string `json:"message"`
}
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 SuccessString(c *gin.Context, format string, values ...interface{}) {
c.String(http.StatusOK, format, values)
logEnd(c, fmt.Sprintf(format, values))
}
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