我有这个结构:
// Nearby whatever
type Nearby struct {
id int `json:"id,omitempty"`
me int `json:"me,omitempty"`
you int `json:"you,omitempty"`
contactTime string `json:"contactTime,omitempty"`
}
然后我称之为:
strconv.Itoa(time.Now())
像这样:
s1 := Nearby{id: 1, me: 1, you: 2, contactTime: strconv.Itoa(time.Now())}
但它说:
> cannot use time.Now() (type time.Time) as type int in argument to
> strconv.Itoa
有谁知道那是什么?我想在这里将一个 int 转换为一个字符串。
撒科打诨
相关分类