我有一个包含列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)
如何检查日期是否过期?
使用时间。After or time.Before.
操场的例子:
package main
import (
"fmt"
"time"
)
func main() {
created := time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC)
now := time.Now()
if created.Before(now) {
fmt.Println("do something")
}
}