博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
go JSON
阅读量:5134 次
发布时间:2019-06-13

本文共 611 字,大约阅读时间需要 2 分钟。

package utilsimport (    "encoding/json"    "errors")func JsonToMap(text []byte) (map[string]interface{}, error) {    var anonymous interface{}    err := json.Unmarshal(text, &anonymous)    if err != nil {        return nil, errors.New(err.Error())    }       res := anonymous.(map[string]interface{})    return res, nil                                                                                                                                                     }

参考:https://github.com/astaxie/build-web-application-with-golang/blob/master/zh/07.2.md

转载于:https://www.cnblogs.com/allenhaozi/p/5802934.html

你可能感兴趣的文章
AS3优化性能笔记二
查看>>
ElasticSearch(站内搜索)
查看>>
4----COM:a Generative Model for group recommendation(组推荐的一种生成模型)
查看>>
UVA 11137 - Ingenuous Cubrency
查看>>
js阻止事件冒泡的两种方法
查看>>
Java异常抛出
查看>>
[SQL Server 系] T-SQL数据库的创建与修改
查看>>
74HC164应用
查看>>
变量声明和定义的关系
查看>>
Wpf 之Canvas介绍
查看>>
linux history
查看>>
jQuery on(),live(),trigger()
查看>>
Python2.7 urlparse
查看>>
sencha touch在华为emotion ui 2.0自带浏览器中圆角溢出的bug
查看>>
【架构】Linux的架构(architecture)
查看>>
ASM 图解
查看>>
Date Picker控件:
查看>>
你的第一个Django程序
查看>>
grafana授权公司内部邮箱登录 ldap配置
查看>>
treegrid.bootstrap使用说明
查看>>