1
0
mirror of https://github.com/json-iterator/go.git synced 2025-03-23 21:09:11 +02:00

update README

This commit is contained in:
Tao Wen 2016-12-05 10:49:33 +08:00
parent 7a507e6bf3
commit 8ef8e04fbc

View File

@ -14,17 +14,17 @@ type StructOfTag struct {
} }
func Test_reflect_struct_tag_field(t *testing.T) { func Test_reflect_struct_tag_field(t *testing.T) {
jsoniter.Unmarshal(`{"field-1": "hello", "field2": "", "field3": "100"}`, &struct_) err := jsoniter.Unmarshal(`{"field-1": "hello", "field2": "", "field3": "100"}`, &struct_)
if struct_.field1 != "hello" { if struct_.field1 != "hello" {
fmt.Println(iter.Error) fmt.Println(err)
t.Fatal(struct_.field1) t.Fatal(struct_.field1)
} }
if struct_.field2 != "world" { if struct_.field2 != "world" {
fmt.Println(iter.Error) fmt.Println(err)
t.Fatal(struct_.field2) t.Fatal(struct_.field2)
} }
if struct_.field3 != 100 { if struct_.field3 != 100 {
fmt.Println(iter.Error) fmt.Println(err)
t.Fatal(struct_.field3) t.Fatal(struct_.field3)
} }
} }