我有一个ServiceAccount嵌入其他两种类型(用户和策略)的类型。然而,User由于该Policy类型的 Unmarshaler 实现,该类型的字段似乎被完全忽略了。这种行为有什么好的理由吗?对我来说这看起来像是一个错误,因为 json 包可以通过反射看到我们嵌入了两种类型,而不仅仅是 type Policy。
我知道我也可以通过在 ServiceAccount 类型上实现 Unmarshaler 接口来“修复”这个问题。
package main
import (
"encoding/json"
"fmt"
)
type ServiceAccount struct {
User
Policy
}
type User struct {
UserID string `json:"userID"`
}
type Policy struct {
Scopes string `json:"scopes,omitempty"`
}
// PolicyRaw is the Policy type as received from client.
type PolicyRaw struct {
Scopes string `json:"scopes,omitempty"`
}
func main() {
s := `{"userID":"xyz", "scopes":"some scopes"}`
srvAcc := &ServiceAccount{}
if err := json.Unmarshal([]byte(s), srvAcc); err != nil {
panic(err)
}
fmt.Printf("srvAcc %v", *srvAcc)
}
func (p *Policy) UnmarshalJSON(b []byte) error {
pr := new(PolicyRaw)
if err := json.Unmarshal(b, pr); err != nil {
return err
}
p.Scopes = pr.Scopes
return nil
}
潇湘沐
相关分类