这是一段非常简单的代码,应该根据文档工作。
package controllers
import (
"github.com/astaxie/beego"
"github.com/astaxie/beego/orm"
"fmt"
)
type TestController struct {
beego.Controller
}
type Ticket struct {
Id int `orm:"auto"`
EventId int
EntryId int
}
func (this *TestController) Get() {
o := orm.NewOrm()
tickets := new([]*Ticket)
qs, _ := o.QueryTable(new(Ticket)).Filter("EventId", 2).All(&tickets)
fmt.Print(qs)
this.Ctx.WriteString("test controller")
}
func init(){
orm.RegisterModel(new(Ticket))
}
这导致Beego崩溃,并出现以下错误:
GoEventKeeper:wrong object type `*[]*controllers.Ticket` for rows scan, need *[]*rohan.com/GoEventKeeper/controllers.Ticket or *rohan.com/GoEventKeeper/controllers.Ticket
我觉得这不应该发生,显然我在 Controller 内部只有一个Ticket结构,因此似乎相互比较了错误的值?
我需要怎么做才能解决这个问题?
最佳答案
qs, _ := o.QueryTable(new(Ticket)).Filter("EventId", 2).All(&tickets)
更改为
qs, _ := o.QueryTable(new(Ticket)).Filter("EventId", 2).All(tickets)
因为门票已经是重点
更详细的请引用http://beego.me/docs/mvc/model/query.md#all
关于orm - 无法使用Beego的ORM .All(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19054180/