Refactor code

This commit is contained in:
wenxu12345 2021-12-30 21:09:37 +08:00
parent eb417c7e22
commit a654073c71

View File

@ -6,9 +6,9 @@ import (
"github.com/golang/protobuf/proto"
)
func JsonDataList(resp interface{}) []map[string]interface{} {
func JsonDataList(resp ...interface{}) []map[string]interface{} {
result := make([]map[string]interface{}, 0)
for _, v := range resp.([]proto.Message) {
for _, v := range resp {
m := ProtoToMap(v.(proto.Message), false)
result = append(result, m)
}