beego自动路由

自动匹配

用户首先需要把需要路由的控制器注册到自动路由中:

beego.AutoRouter(&controllers.MainController{})

那么 beego 就会通过反射获取该结构体中所有的实现方法,你就可以通过如下的方式访问到对应的方法中:(MainController在路由前面就写main)

/main/login   调用 MainController 中的 Login 方法
/main/logout  调用 MainController 中的 Logout 方法

除了前缀两个 /:controller/:method 的匹配之外,剩下的 url beego 会帮你自动化解析为参数,保存在 this.Ctx.Input.Params 当中:

请求URL

http://127.0.0.1:8080/main/dealconsumerecord/2018/9/1

获取参数方法,当通过rest风格进行传递参数时,参数保存在this.Ctx.Input.Params当中,获取时需通过this.Ctx.Input.Params()[“0”]这种格式才能获取得到。

ma.Ctx.WriteString(ma.Ctx.Input.Params()["0"])//2018

我也发现了

版本1.9.2中并不像官方文档中说明的那样可以忽略大小进行方法匹配。
比如,方法为ToPublish,那么在调用url的过程中传入toPublish并不能匹配到对应的方法。必须使用topublish才能匹配到Topublish方法。

现在已经可以通过自动识别出来下面类似的所有 url,都会把请求分发到 controller 的 simple 方法:

/controller/simple
/controller/simple.html
/controller/simple.json
/controller/simple.xml

可以通过 this.Ctx.Input.Param(“:ext”) 获取后缀名。

参考资料

https://www.choupangxia.com/topic/detail/6

你可能感兴趣的:(beego自动路由)