dqpciw9742 2016-08-05 16:06
浏览 210
已采纳

beego模型错误

I'm quite new on beego. I start a little project to discover and start to learn the framework. I used the bee command to create the project:

bee new my_project

The version of beego is:

bee   :1.4.1
beego :1.6.1
Go    :go version go1.6.3 linux/amd64

I have a little model, the content of my model file is:

package models

import "github.com/astaxie/beego/orm"

type ShortUrl struct {
    Id     int `orm:"auto"`
    Domain string
    Short  string
}

func init() {
    orm.RegisterModel(new(ShortUrl))
}

In the main file:

package main

import (
    "github.com/astaxie/beego"
    "github.com/astaxie/beego/orm"
    _ "github.com/hobbestigrou/mahewinsexyurl/routers"
)

func init() {
    orm.RegisterDriver("sqlite3", orm.DRSqlite)
    orm.RegisterDataBase("default", "sqlite3", "data.db")
    orm.RunCommand()
}

func main() {
    beego.Run()
}

In the controller file:

package controllers

import (
    "github.com/astaxie/beego"
    "github.com/astaxie/beego/orm"
    "github.com/hobbestigrou/mahewinsexyurl/models"
    _ "github.com/mattn/go-sqlite3"
    "github.com/ventu-io/go-shortid"
    "net/url"
)

type MainController struct {
    beego.Controller
}

type Domain struct {
    Id  int    `form:"-"`
    Url string `form:"url"`
}

func (c *MainController) Get() {
    _ = beego.ReadFromRequest(&c.Controller)

    c.Data["Form"] = &Domain{}
    c.TplName = "index.tpl"
}

func (c *MainController) Post() {
    o := orm.NewOrm()

    flash := beego.NewFlash()
    domain := c.Input().Get("url")

    if _, err := url.ParseRequestURI(domain); err != nil {
        flash.Error("Please put a valid url")
        flash.Store(&c.Controller)
        c.Redirect("/", 302)
    }

    short, _ := shortid.Generate()
    ur := &models.ShortUrl{
        Domain: domain,
        Short:  short,
    }

    if created, _, err := o.ReadOrCreate(&ur, "Domain"); err != nil {
        if created {
            flash.Notice("The url was added: ", short)
            flash.Store(&c.Controller)
            c.Redirect("/", 302)
            } else {
                flash.Notice("The url already exists", short)
                flash.Store(&c.Controller)
                c.Redirect("/", 302)
            }
        }

        c.TplName = "index.tpl"
}

I know I can refactor the flash part but it's a detail at the moment.

The router:

package routers

import (
    "github.com/hobbestigrou/mahewinsexyurl/controllers"
    "github.com/astaxie/beego"
)

func init() {
    beego.Router("/", &controllers.MainController{})
}

I used the syncdb to create the table:

./mahewinsexyurl orm syncdb

The table was successfully created. But when I try to post data, I got an error:

2016/08/05 17:16:24 [router.go:854][C] the request url is  /
2016/08/05 17:16:24 [router.go:855][C] Handler crashed with error <Ormer> table: `.` not found, maybe not RegisterModel
2016/08/05 17:16:24 [router.go:861][C] /usr/lib/go-1.6/src/runtime/asm_amd64.s:472
2016/08/05 17:16:24 [router.go:861][C] /usr/lib/go-1.6/src/runtime/panic.go:443
2016/08/05 17:16:24 [router.go:861][C] /home/hobbestigrou/go/src/github.com/astaxie/beego/orm/orm.go:110
2016/08/05 17:16:24 [router.go:861][C] /home/hobbestigrou/go/src/github.com/astaxie/beego/orm/orm.go:135
2016/08/05 17:16:24 [router.go:861][C] /home/hobbestigrou/go/src/github.com/hobbestigrou/mahewinsexyurl/controllers/default.go:47
2016/08/05 17:16:24 [router.go:861][C] /home/hobbestigrou/go/src/github.com/astaxie/beego/router.go:763
2016/08/05 17:16:24 [router.go:861][C] /usr/lib/go-1.6/src/net/http/server.go:2081
2016/08/05 17:16:24 [router.go:861][C] /usr/lib/go-1.6/src/net/http/server.go:1472
2016/08/05 17:16:24 [router.go:861][C] /usr/lib/go-1.6/src/runtime/asm_amd64.s:1998

What is my mistake ?

  • 写回答

2条回答 默认 最新

  • dongyunwei8596 2016-08-06 17:16
    关注

    I found my error it was a careless mistake in the controllers:

    ur := &models.ShortUrl{
        Domain: domain,
        Short:  short,
    }
    
    if created, _, err := o.ReadOrCreate(&ur, "Domain"); err == nil {
    }
    

    Thew new version is:

    ur := models.ShortUrl{
        Domain: domain,
        Short:  short,
    }
    
    if created, _, err := o.ReadOrCreate(&ur, "Domain"); err == nil {
    }
    

    The error is the double usage of & to work and create pointer to a ShortUrl struct.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 springboot 3.0 实现Security 6.x版本集成
  • ¥15 PHP-8.1 镜像无法用dockerfile里的CMD命令启动 只能进入容器启动,如何解决?(操作系统-ubuntu)
  • ¥15 请帮我解决一下下面六个代码
  • ¥15 关于资源监视工具的e-care有知道的嘛
  • ¥35 MIMO天线稀疏阵列排布问题
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?
  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)