在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
当进去表的update操作的时候 报错说,不正确的表名 查看日志发现sql语句里面没有表名
需要在update操作的时候,Model()方法指定好要更新的表struct类型 官方的注释 // update all users's name to `hello` db.Model(&User{}).Update("name", "hello") // if user's primary key is non-blank, will use it as condition, then will only update the user's name to `hello` db.Model(&user).Update("name", "hello") .Model方法,参数必须这样的,&User{} 这种结构体指针 ,user这个是结构体或者指针的情况下,也要再&取一下地址 |
请发表评论