web-dev-qa-db-ja.com

json.Marshal(struct)は「{}」を返します

type TestObject struct {
    kind string `json:"kind"`
    id   string `json:"id, omitempty"`
    name  string `json:"name"`
    email string `json:"email"`
}

func TestCreateSingleItemResponse(t *testing.T) {
    testObject := new(TestObject)
    testObject.kind = "TestObject"
    testObject.id = "f73h5jf8"
    testObject.name = "Yuri Gagarin"
    testObject.email = "[email protected]"

    fmt.Println(testObject)

    b, err := json.Marshal(testObject)

    if err != nil {
        fmt.Println(err)
    }

    fmt.Println(string(b[:]))
}

出力は次のとおりです。

[ `go test -test.run="^TestCreateSingleItemResponse$"` | done: 2.195666095s ]
    {TestObject f73h5jf8 Yuri Gagarin [email protected]}
    {}
    PASS

JSONが本質的に空なのはなぜですか?

106
Doug Knesek

フィールド名の最初の文字を大文字にして、TestObjectのフィールドを export する必要があります。 kindKindなどに変更します。

type TestObject struct {
 Kind string `json:"kind"`
 Id   string `json:"id,omitempty"`
 Name  string `json:"name"`
 Email string `json:"email"`
}

Encoding/jsonパッケージおよび同様のパッケージは、エクスポートされていないフィールドを無視します。

フィールド宣言に続く`json:"..."`文字列は struct tags です。この構造体のタグは、JSONとのマーシャリング時に構造体のフィールドの名前を設定します。

playground

191
Cerise Limón
  • 最初の文字がcapitalisedの場合、識別子は使用する任意のコードに対して公開されます。
  • 最初の文字がlowercaseの場合、識別子はプライベートであり、宣言されたパッケージ内でのみアクセスできます。

 var aName // private

 var BigBro // public (exported)

 var 123abc // illegal

 func (p *Person) SetEmail(email string) {  // public because SetEmail() function starts with upper case
    p.email = email
 }

 func (p Person) email() string { // private because email() function starts with lower case
    return p.email
 }
25
Sourabh Bhagat