dpqy77560 2016-11-14 11:38
浏览 250
已采纳

在Golang中使用EasyJSON

Let's say I have a struct like below:-

//easyjson:json
type JSONData struct {
    Data []string
}

I want to un-marshal the below json to JSONData struct

{"Data" : ["One", "Two", "Three"]} 

Can someone let me know how can I use easyjson to un-marshal a json in Golang? I could not find any example in their README

  • 写回答

3条回答 默认 最新

  • dongshi6710 2016-11-14 12:01
    关注

    I don't know why you trying to use easyjson. encoding/json is pretty fine to work with. But though here is the answer for you.

    NB: It would be better if you use encoding/json.

    //easyjson:json
    type JSONData struct {
        Data []string
    }
    

    After define this struct run easyjson <fileName-JSONData-is-defined>.go. this will create an extra go file containg

    func (v JSONData) MarshalJSON() ([]byte, error)
    func (v JSONData) MarshalEasyJSON(w *jwriter.Writer)
    func (v *JSONData) UnmarshalJSON(data []byte) errorfunc (v *JSONData) 
    func UnmarshalEasyJSON(l *jlexer.Lexer)
    

    those methods. Then (un-)marshal using

    d := &JSONData{}
    d.UnmarshalJSON([]byte(`{"Data" : ["One", "Two", "Three"]} `))
    // Or you could also use
    // json.Unmarshal(data, d) this will also call this d.UnmarshalJSON
    fmt.Println(d)
    

    A full example is here.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教