提交 18600bcd 编写于 作者: W wenxu12345

Refactor code

上级 7b41ce1f
......@@ -182,16 +182,27 @@ func GetGroupAllMemberList(c *gin.Context) {
}
memberListResp.Test = JsonData(memberListResp.MemberList)
log.NewInfo(req.OperationID, "GetGroupAllMember api return ", memberListResp)
c.JSON(http.StatusOK, memberListResp)
}
func JsonData(resp interface{}) []map[string]interface{} {
var result []map[string]interface{}
for _, v := range resp.([]proto.Message) {
m := ProtoToMap(v.(proto.Message), false)
result = append(result, m)
}
return result
}
func ProtoToMap(pb proto.Message, idFix bool) map[string]interface{} {
marshaler := jsonpb.Marshaler{
OrigName: true,
EnumsAsInts: false,
EmitDefaults: true,
}
s, _ := marshaler.MarshalToString(pb)
out := make(map[string]interface{})
json.Unmarshal([]byte(s), &out)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册