我有一个表格包含列,我需要将此列中的时间与现在的时间进行比较,例如:created_at
result := database.DB.Where("code = ?", post.code).First(&post)
if result.CreatedAt < time.Now() {
// do something
}
我在编辑器中遇到错误:Invalid operation: result.CreatedAt > time.Now() (the operator > is not defined on Time)
如何检查日期是否过期?
慕斯王
相关分类