Modifying JSON file using Golang

試著忘記壹切 提交于 2019-12-04 21:10:57

Add a declaration

type Authenticator struct {
    Name  string `json:"name"`
    Phone int64  `json:"phone"`
}

and change

Authenticators []struct {
        Name  string `json:"name"`
        Phone int64  `json:"phone"`
} `json:"authenticators"`

to

Authenticators []Authenticator `json:"authenticators"`

Then, to add an authenticator to the first user:

u.User[0].Authenticators = append(u.User[0].Authenticators, Authenticator{
        Name: "John Doe",
        Phone: 1234567890,
})
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!