2021
06-07
06-07
golang中json和struct的使用说明
1、返回json响应结果在struct的字段后面加入json:"key"可以进行json格式输出,其中key为json的键名typeSuccessResponsestruct{Codeint`json:"code"`Msgstring`json:"msg"`Datainterface{}`json:"data"`}funcSuccessRsp(ctx*gin.Context,datainterface{}){res:=SuccessResponse{Code:0,Msg:"success",Data:data,}ctx.JSON(http.StatusOK,res)}typeMyData...
继续阅读 >