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[:]))
}
Aqui está a saída:
[ `go test -test.run="^TestCreateSingleItemResponse$"` | done: 2.195666095s ]
{TestObject f73h5jf8 Yuri Gagarin Yuri.Gagarin@Vostok.com}
{}
PASS
Por que o JSON é essencialmente vazio?
json
go
marshalling
Doug Knesek
fonte
fonte
json
tag de campo (conforme descrito no último parágrafo desta resposta).Exemplos
fonte
In Go, a name is exported if it begins with a capital letter
. Para contextualizar, visite este tour Go BasicsEm golang
======= Adicionar detalhes
Primeiro, eu estou tentando codificar assim
compilação golang não é erro e não mostra aviso. Mas a resposta está vazia porque algo
Depois disso, eu pesquisei no google encontrei este artigo
É trabalho.
Espero ajuda.
fonte