我在某个文件中定义了一个结构device.go
type Payload struct {
...
Timestamp *time.Time `json:"timestamp,omitempty"`
...
}
现在我想在其他文件中初始化此结构,我正在尝试此操作:
payload:= &device.Payload{
....
Timestamp: time.Now(), // throws error
... //other initializations work fine
}
不能使用时间。Now() (时间类型的值。时间)作为*时间。结构文字中的时间值
我想将变量初始化为当前 UTC 时间。我是高朗的新手。我该怎么做?
qq_花开花谢_0
江户川乱折腾
相关分类