1 Star 0 Fork 0

灵狐/go-fox-edge-common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
AjaxResult.go 502 Bytes
一键复制 编辑 原始数据 按行查看 历史
灵狐 提交于 2024-10-23 10:30 . 初始化仓库
package AjaxResult
import "net/http"
func Result(code int64, msg string, data interface{}) map[string]interface{} {
result := make(map[string]interface{})
result["code"] = code
result["msg"] = msg
if data != nil {
result["data"] = data
}
return result
}
func Success(msg string, data interface{}) map[string]interface{} {
return Result(http.StatusOK, "", data)
}
func Error(msg string, data interface{}) map[string]interface{} {
return Result(http.StatusInternalServerError, "", data)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fierce_wolf/go-fox-edge-common.git
git@gitee.com:fierce_wolf/go-fox-edge-common.git
fierce_wolf
go-fox-edge-common
go-fox-edge-common
v1.0.0

搜索帮助