go json.Unmarshal序列化时,指定必须存在的字段

Grassto · · 5290 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

# 目的 使用**encoding/json**包的**json.Unmarshal**方法的时候,指定不能为空的字段,若字段为空,Unmarshal报错。 # 具体使用场景 通过Unmarshal方法进行字段必须赋值的过滤,达到统一一处进行判断的效果,之后改起来方便。 # 前言 我们在使用**encoding/json**包的时候,会指定**tag**标签,如下: ```go type A struct { Name string `json:",omitempty"` // 若为空值,则字符串中不会包含它 Value string `xorm:"unique" json:"required"` } ``` 这时,我想要设置某个字段必须赋值,不赋值的时候,json.Unmarshal报错怎么搞(required)?但是官方标准库貌似没有提供类似的tag标签。我通过实现**Unmarshaler**接口来进行一层封装,以达到报错的目的。 **Unmarshaler**接口仅提供了一个方法,实现其即可。 ```go type Unmarshaler interface { UnmarshalJSON([]byte) error } ``` ```go package main import ( "encoding/json" "errors" "log" "fmt" ) type A struct { Name string `json:",omitempty"` Value string `xorm:"unique" json:"required"` } type A_Wrapper struct { Name string Value string `xorm:"unique" json:"required"` } func (a *A) UnmarshalJSON(data []byte) error { w := new(A_Wrapper) if err := json.Unmarshal(data, w); err != nil { return err } // Name不能为空 if w.Name == "" { return errors.New("Name is nil") } a.Name = w.Name a.Value = w.Value return nil } func main() { jsonStr := `{"Value":"Name is nil"}` a := new(A) err := json.Unmarshal([]byte(jsonStr), a) if err != nil { log.Fatal(err) } fmt.Printf("%#v\n", a) } ``` # 结语 这边简单的通过包装一层Unmarshal来实现了目的,感觉不是很好。小伙伴们若有其他好的实现方式,欢迎留言交流一下。 # 其他 GitHub上的[validator](https://github.com/go-playground/validator)库,有兴趣的可以了解一下 [https://github.com/go-playground/validator](https://github.com/go-playground/validator)

有疑问加站长微信联系(非本文作者))

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

5290 次点击  
加入收藏 微博
5 回复  |  直到 2020-04-24 10:15:00
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传