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

lujiahaoo · · 4479 次点击
http://gorm.io/zh_CN/docs/conventions.html 看一下对应的结构字段和tag对不对
#5
更多评论
你的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