Go 语言错误处理方式

Go 语言错误处理方式

方式一
type ResponseError struct {
   
	Code      int         `json:"code,omitempty"`      // 错误码
	Message   string      `json:"message,omitempty"`   // 错误消息
	RequestId string      `json:"requestId,omitempty"` // 全局请求ID
	Data      interface{
   } `json:"data,omitempty"	

你可能感兴趣的:(go,golang)