65 lines
1.3 KiB
Go
65 lines
1.3 KiB
Go
/*
|
|
* @Date: 2021-03-22 18:51:29
|
|
* @LastEditors: viletyy
|
|
* @LastEditTime: 2021-04-06 09:36:05
|
|
* @FilePath: /potato/utils/response.go
|
|
*/
|
|
package utils
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type Response struct {
|
|
Code int `json:"code"`
|
|
Data interface{} `json:"data"`
|
|
Msg string `json:"msg"`
|
|
}
|
|
|
|
const (
|
|
ERROR = -1
|
|
SUCCESS = 0
|
|
)
|
|
|
|
func Result(code int, data interface{}, msg string, c *gin.Context) {
|
|
c.JSON(http.StatusOK, Response{
|
|
code,
|
|
data,
|
|
msg,
|
|
})
|
|
}
|
|
|
|
func Ok(c *gin.Context) {
|
|
Result(SUCCESS, map[string]interface{}{}, "操作成功", c)
|
|
}
|
|
|
|
func OkWithMessage(message string, c *gin.Context) {
|
|
Result(SUCCESS, map[string]interface{}{}, message, c)
|
|
}
|
|
|
|
func OkWithData(data interface{}, c *gin.Context) {
|
|
Result(SUCCESS, data, "操作成功", c)
|
|
}
|
|
|
|
func OkWithDetailed(data interface{}, message string, c *gin.Context) {
|
|
Result(SUCCESS, data, message, c)
|
|
}
|
|
|
|
func Fail(c *gin.Context) {
|
|
Result(ERROR, map[string]interface{}{}, "操作失败", c)
|
|
}
|
|
|
|
func FailWithMessage(message string, c *gin.Context) {
|
|
Result(ERROR, map[string]interface{}{}, message, c)
|
|
}
|
|
|
|
func FailWithData(data interface{}, c *gin.Context) {
|
|
Result(ERROR, data, "操作失败", c)
|
|
}
|
|
|
|
func FailWithDetailed(data interface{}, message string, c *gin.Context) {
|
|
Result(ERROR, data, message, c)
|
|
}
|