duanshan2988 2015-06-17 15:31
浏览 6
已采纳

Golang-使用/迭代JSON解析地图

With PHP and Javascript (and Node) parsing JSON is a very trivial operation. From the looks of it Go is rather more complicated. Consider the example below

package main

import ("encoding/json";"fmt")

type fileData struct{
 tn string
 size int
}

type jMapA map[string] string
type jMapB map[string] fileData

func parseMapA(){
 var dat jMapA
 s := `{"lang":"Node","compiled":"N","fast":"maybe"}`
 if err := json.Unmarshal([]byte(s), &dat); err != nil {
  panic(err)
 }

 fmt.Println(dat);
 for k,v := range dat{
  fmt.Println(k,v)
 }
}

func parseMapB(){
 var dat jMapB
 s := `{"f1":{"tn":"F1","size":1024},"f2":{"tn":"F2","size":2048}}`
 if err := json.Unmarshal([]byte(s), &dat); err != nil {
  panic(err)
 }

 fmt.Println(dat);
 for k,v := range dat{
  fmt.Println(k,v)
 }
}

func main() {
 parseMapA()
 parseMapB()    
}

The parseMapA() call obligingly returns

map[lang:Node Compiled:N fast:maybe]
lang Node
compiled N
fast maybe

However, parseMapB() returns

map[f1:{ 0}, f2:{ 0}]
f2 { 0}
f1 { 0}

I am into my first few hours with Go so I imagine I am doing something wrong here. However, I have no idea what that might be. I'd much appreciate any help. More generally, what would the Go equivalent of the Node code

for(p in obj){
 doSomethingWith(obj[p]);

}

be in Go?

  • 写回答

1条回答 默认 最新

  • doujiaci7976 2015-06-17 15:36
    关注

    In Go, unmarshaling works only if a struct has exported fields, ie. fields that begin with a capital letter.

    Change your first structure to:

    type fileData struct{
        Tn string
        Size int
    }
    

    See http://play.golang.org/p/qO3U7ZNrNs for a fixed example.

    Moreover, if you intend to marshal this struct back to JSON, you'll notice that the resulting JSON use capitalized fields, which is not what you want.

    You need to add field tags:

    type fileData struct{
        Tn   string `json:"tn"`
        Size int    `json:"size"`
    }
    

    so the Marshal function will use the correct names.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?