dongmo3413 2013-06-25 15:16
浏览 318
已采纳

Golang XML Unmarshal和time.Time字段

I have XML data I am retrieving via a REST API that I am unmarshal-ing into a GO struct. One of the fields is a date field, however the date format returned by the API does not match the default time.Time parse format and thus the unmarshal fails.

Is there any way to specify to the unmarshal function which date format to use in the time.Time parsing? I'd like to use properly defined types and using a string to hold a datetime field feels wrong.

Sample struct:

type Transaction struct {

    Id int64 `xml:"sequencenumber"`
    ReferenceNumber string `xml:"ourref"`
    Description string `xml:"description"`
    Type string `xml:"type"`
    CustomerID string `xml:"namecode"`
    DateEntered time.Time `xml:"enterdate"` //this is the field in question
    Gross float64 `xml:"gross"`
    Container TransactionDetailContainer `xml:"subfile"`
}

The date format returned is "yyyymmdd".

  • 写回答

4条回答 默认 最新

  • duangan4070 2014-07-29 12:24
    关注

    I had the same problem.

    time.Time doesn't satisfy the xml.Unmarshaler interface. And you can not specify a date fomat.

    If you don't want to handle the parsing afterward and you prefer to let the xml.encoding do it, one solution is to create a struct with an anonymous time.Time field and implement your own UnmarshalXML with your custom date format.

    type Transaction struct {
        //...
        DateEntered     customTime     `xml:"enterdate"` // use your own type that satisfies UnmarshalXML
        //...
    }
    
    type customTime struct {
        time.Time
    }
    
    func (c *customTime) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
        const shortForm = "20060102" // yyyymmdd date format
        var v string
        d.DecodeElement(&v, &start)
        parse, err := time.Parse(shortForm, v)
        if err != nil {
            return err
        }
        *c = customTime{parse}
        return nil
    }
    

    If your XML element uses an attribut as a date, you have to implement UnmarshalXMLAttr the same way.

    See http://play.golang.org/p/EFXZNsjE4a

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

报告相同问题?

悬赏问题

  • ¥15 远程桌面文档内容复制粘贴,格式会变化
  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题