Go語言進階特性總結——Struct、Map與JSON之間的轉化

來源:互聯網
上載者:User

標籤:fun   class   field   轉化   erro   key   inter   ring   turn   

Struct與Map之間互相轉換

 1 // Struct2Map convert struct to map 2 func Struct2Map(st interface{}) map[string]interface{} { 3     vt := reflect.TypeOf(st) 4     vv := reflect.ValueOf(st) 5     var data = make(map[string]interface{}) 6     for i := 0; i < vt.NumField(); i++ { 7         f := vt.Field(i) 8         v := vv.Field(i) 9         chKey := f.Tag.Get("json")10         switch v.Kind() {11         case reflect.String:12             if s, ok := v.Interface().(string); ok && s != "" {13                 data[chKey] = s14             }15         case reflect.Int:16             if i, ok := v.Interface().(int); ok && i != 0 {17                 data[chKey] = i18             }19         case reflect.Struct:20             if t, ok := v.Interface().(time.Time); ok && t != (time.Time{}) {21                 data[chKey] = t22             }23         case reflect.Uint64:24             if u64, ok := v.Interface().(uint64); ok && u64 != 0 {25                 data[chKey] = u6426             }27         case reflect.Uint:28             if u, ok := v.Interface().(uint); ok && u != 0 {29                 data[chKey] = u30             }31         default:32             log.Error("unsupport common query type: " + string(chKey))33         }34     }35     return data36 }

JSON與Map之間的轉換

// JSONString2Map convert struct to mapfunc JSONString2Map(str string) (map[string]string, error) {    result := make(map[string]string)    err := json.Unmarshal([]byte(str), &result)    return result, err}

Map與JSON之間的轉換

// Map2JSON conver map to jsonfunc Map2JSON(jsonmap map[string]string) (string, error) {    jbytes, err := json.Marshal(jsonmap)    return string(jbytes), err}

 

Go語言進階特性總結——Struct、Map與JSON之間的轉化

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.