计数返回错误结果
我有一个用户模型,目前只有一行。我想指望整个用户表中的行数,这里是我的代码:计数返回错误结果
var count int64 db.Model(&models.User{}).Count(count)
fmt.Println(count)
我期待但打印。 什么是使用gorm打印表格中的行数的正确方法?
更新:我的用户模型:
package models import "github.com/jinzhu/gorm"
type User struct {
gorm.Model
Name string
Password string
Admin bool
}
回答:
您需要的count
变量传递给Counter
作为参考,因为现在它是按值传递。你应该这样做:
db.Model(&models.User{}).Count(&count)
以上是 计数返回错误结果 的全部内容, 来源链接: utcz.com/qa/263687.html