Golang - Capitals in struct fields

不问归期 提交于 2019-12-31 17:49:23

问题


I'm using this library to access couchDB (cloudant to be specific) "github.com/mikebell-org/go-couchdb" and I've noticed a problem.

When I go to add a file to the database and pass in a struct, only the fields of the struct which started with a capital letter get added.

For example

type Person struct {
    name string
    Age  int
}

func main() {
    db, _ := couchdb.Database(host, database, username, password)
    joe := Person{
        name: "mike",
        Age:  190,
    }
    m, _ := db.PostDocument(joe)
}

In this case, only the "age" field got updated and inserted into my database.

I've noticed this problem in another case also - when I'm doing something like this :

type Sample struct {
    Name string
    age  int 
}


joe := Sample{
    Name: "xx",
    age:  23,
}

byt, _ := json.Marshal(joe)

post_data := strings.NewReader(string(byt))
fmt.Println(post_data)

in this case, only Name would be printed out :

output : &{{"Name":"xx"} 0 -1}

Why is this? and If I would like to have a field with a lowercase and be inside the database, is that possible?


回答1:


This is because only fields starting with a capital letter are exported, or in other words visible outside the curent package (and in the json package in this case).

Here is the part of the specifications refering to this: http://golang.org/ref/spec#Exported_identifiers

Still, you can unmarshall json fields that do no start with a capital letters using what is called "tags". With the json package, this is the syntax to use:

type Sample struct {
    Name string `json:"name"`
    Age  int    `json:"age"`
}

Refer to the documentation for more information about this.




回答2:


json package only stringfiy fields start with capital letter. see http://golang.org/pkg/encoding/json/

You need define the struct like this:

type Sample struct{
    Name string `json:"name"`
    Age int `json:"age"`
}


来源:https://stackoverflow.com/questions/24837432/golang-capitals-in-struct-fields

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!