douzhi4991 2019-04-14 02:07
浏览 431
已采纳

golang / gorm:api端点仅返回最后一条记录

Hi I am learning to use golang right now, and there is an api end point, where I want to return all the existing users in the database, however my query is returning only last user.

base.go < responsible for establishing db conns
import (
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/sqlite")
var db *gorm.DB //database
func GetDB() *gorm.DB {
return db
}

models.go < responsible for data abstractions

type Account struct {
    gorm.Model
    Email    string `json:"email"`
    Password string `json:"password"`
    Token    string `json:"token";sql:"-"`
}
func GetAllUsers() *Account {

acc := &Account{}
rows, err := GetDB().Raw("select * from accounts").Rows()
if err != nil {
    fmt.Print("error")
}
for rows.Next() {
    GetDB().ScanRows(rows, &acc)
}
return acc

}

  • 写回答

2条回答 默认 最新

  • douqiang1851 2019-04-14 03:09
    关注

    You are filling the same acc struct through each iteration. You are also passing a pointer to a pointer of Account. Try adding a slice to hold all the accounts.

    func GetAllUsers() []*Account {
        accs := []*Account{}
        rows, err := GetDB().Raw("select * from accounts").Rows()
        if err != nil {
            fmt.Printf("error: %v", err)
        }
        for rows.Next() {
            acc := &Account{}
            GetDB().ScanRows(rows, acc)
            accs = append(accs, acc)
        }
        return accs
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据