[go][beego] table name: `xxx` not exists 问题

时间:2021-08-16 12:45:04

因为是新手小白,对于golang和beego还是入门,遇到了标题中的错误。

问题的原因是所建的model中没有包含这个table的名字,详情请看代码:

没有做更改前报错:table name: `twitter_relationship` not exists

未更改前代码:

func init() {
      // 需要在init中注册定义的model
      orm.RegisterModel(new(Relationship))
}


type Relationship struct {
      Id            string `orm:"column(uid);pk"` // 设置主键
      User          string
      RepostUser    string
      AtUser        string
      RepostLevel   string
      AtLevel       string
      Relationships    *Relationship `orm:"rel(fk)"`
}

数据库中有这张表,本来以为是main.go中写的不正确。main中的函数如图:

func main() {
    o := orm.NewOrm()
    o.Using("twitter") // 默认使用 default,你可以指定为其他数据库
    orm.Debug = true
    cnt, err := o.QueryTable("twitter_relationship").Count() // SELECT COUNT(*) FROM USER
    fmt.Printf("Count Num: %s, %s", cnt, err)
    beego.Run()
}

结果发现并不是,经过查询发现是model的问题,于是更改了以下代码:

func init() {
   // 需要在init中注册定义的model
   orm.RegisterModel(new(TwitterRelationship))
}

type TwitterRelationship struct {
    Id            string `orm:"column(uid);pk"` // 设置主键
    User          string
    RepostUser    string
    AtUser        string
    RepostLevel   string
    AtLevel       string
    TwitterRelationships    *TwitterRelationship `orm:"rel(fk)"`
}

然后问题解决。

参考帖:https://*.com/questions/39080671/beego-querytable-table-name-cpes-not-exists