gorm 的gorm.Model在Create数据时不是会自动插入时间吗?怎么一直报错

lujiahaoo · · 4457 次点击
更多评论
你的struct 发一下,看一下结构体定义
#1
```go type User struct { gorm.Model Username string `gorm:"type:varchar(20);unique_index"` Password string `gorm:"type:varchar(64)"` Phone string `gorm:"type:char(11);unique_index"` } ```
#2