本文主要是介绍gin框架查询数据库报错 created_at: unsupported Scan, storing driver.Value type []uint8 into type *time.Time,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 错误信息
- 解决方案
错误信息
sql: Scan error on column index 1, name "created_at": unsupported Scan, storing driver.Value type []uint8 into type *time.Time
解决方案
在连接数据库的末尾加上parseTime=true,如下:
Db, err = gorm.Open("mysql", "username:password@tcp(127.0.0.1:3306)/gin?charset=utf8&parseTime=true")
这篇关于gin框架查询数据库报错 created_at: unsupported Scan, storing driver.Value type []uint8 into type *time.Time的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!