登录
首页 >  Golang >  Go问答

Golang XML Unmarshal 和 time.Time 字段

来源:Golang技术栈

时间:2023-03-20 21:40:28 184浏览 收藏

在IT行业这个发展更新速度很快的行业,只有不停止的学习,才不会被行业所淘汰。如果你是Golang学习者,那么本文《Golang XML Unmarshal 和 time.Time 字段》就很适合你!本篇内容主要包括Golang XML Unmarshal 和 time.Time 字段,希望对大家的知识积累有所帮助,助力实战开发!

问题内容

我有通过 REST API 检索的 XML 数据,我将其解组到 GO 结构中。其中一个字段是日期字段,但是 API 返回的日期格式与默认 time.Time 解析格式不匹配,因此解组失败。

有什么方法可以指定 unmarshal 函数在 time.Time 解析中使用哪种日期格式?我想使用正确定义的类型并使用字符串来保存日期时间字段感觉不对。

示例结构:

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"`
}

返回的日期格式为“yyyymmdd”。

正确答案

我有同样的问题。

time.Time不满足xml.Unmarshaler接口。而且您不能指定日期格式。

如果您不想在之后处理解析并且您更愿意让它xml.encoding这样做,一种解决方案是创建一个具有匿名time.Time字段的结构并UnmarshalXML使用您的自定义日期格式实现您自己的。

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
}

如果您的 XML 元素使用属性作为日期,则必须以相同的方式实现 UnmarshalXMLAttr。

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

文中关于golang的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《Golang XML Unmarshal 和 time.Time 字段》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>