beego中路由(Router)参数和表单(Form)参数的区别和获取

在beego中,视图层有两种叫做参数的东西,有时候很让人困惑。它们分别是路由参数和表单参数。

beego的路由映射支持灵活的结构,比如对于这种/blog/:catName可以表示的是某一个分类下的blog列表,那么这里的:catName就是路由参数;如果说我们要对这个分类下面的blog进行分页,想查看第10页的blog,那么我们的url可能变成了/blog/:catName?page=10这种格式,那么这里的page就是表单参数。表单参数既可以是GET类型的参数也可以是POST类型的参数,总之都叫做表单参数。

1. 获取路由参数的方法

可以使用下面的方法来获取路由参数:

方法 原型
GetInt func (c *Controller) GetInt(key string) (int64, error)
GetBool func (c *Controller) GetBool(key string) (bool, error)
GetFloat func (c *Controller) GetFloat(key string) (float64, error)
GetString func (c *Controller) GetString(key string) string

我们为了演示这些方法构建了一个路径:

beego.Router('/blog/:catId/:catName:/:catPublish:/:catPrice', &controllers.MainController{}, 'get:Blog')

然后我们可以用下面的方法获取路径参数:

  1. func (this *MainController) Blog() {
  2. catId, _ := this.GetInt(':catId')
  3. catName := this.GetString(':catName')
  4. catPublish, _ := this.GetBool(':catPublish')
  5. catPrice, _ := this.GetFloat(':catPrice')
  6. beego.Debug(fmt.Sprintf('Category Id:%d Name:%s Publish:%v Price:%f', catId, catName, catPublish, catPrice))
  7. }

然后访问http://localhost:8080/blog/30/beego/true/98.45,可以得到下面的输出:

2014/09/02 14:25:04 [D] Category Id:30 Name:beego Publish:true Price:98.450000
2014/09/02 14:25:04 [C] the request url is /blog/30/beego/true/98.45

其实我们可以去看看这些Get方法,比如GetString(github.com/astaxie/beego/controller.go 367行):

  1. func (c *Controller) GetString(key string) string {
  2. return c.Ctx.Input.Query(key)
  3. }

从上面的代码可以看到实际上这些路径参数都是从c.Ctx.Input里面获取的,而这个参数类型是Context,定义在github.com/astaxie/beego/context/context.go里面。

  1. type Context struct {
  2. Input *BeegoInput
  3. Output *BeegoOutput
  4. Request *http.Request
  5. ResponseWriter http.ResponseWriter
  6. _xsrf_token string
  7. }

然后我们再看看Context里面的Input,这是一个*BeegoInput类型(定义在github.com/astaxie/beego/context/input.go)里面:

  1. type BeegoInput struct {
  2. CruSession session.SessionStore
  3. Params map[string]string
  4. Data map[interface{}]interface{} // store some values in this context when calling context in filter or controller.
  5. Request *http.Request
  6. RequestBody []byte
  7. RunController reflect.Type
  8. RunMethod string
  9. }

然后我们再看这个结构体的Query方法的定义:

  1. // Query returns input data item string by a given string.
  2. func (input *BeegoInput) Query(key string) string {
  3. if val := input.Param(key); val != '' {
  4. return val
  5. }
  6. if input.Request.Form == nil {
  7. input.Request.ParseForm()
  8. }
  9. return input.Request.Form.Get(key)
  10. }

我们惊奇地发现这个Query方法并不单纯,它同时支持查询路由参数和表单参数。所以一般情况下你也可以用来查询表单参数。

2. 获取表单参数的方法
上面我们看过了获取路由参数的方法,这里我们再看一下获取表单参数的方法。在上面的获取路由参数的讲解最后,我们发现可以使用和上面相同的方法来获取表单参数。

方法 原型
GetInt func (c *Controller) GetInt(key string) (int64, error)
GetBool func (c *Controller) GetBool(key string) (bool, error)
GetFloat func (c *Controller) GetFloat(key string) (float64, error)
GetString func (c *Controller) GetString(key string) string

验证很简单,使用这样的url:http://localhost:8080/blog/30/beego/true/98.45?page=10和代码:

  1. page, _ := this.GetInt('page')
  2. beego.Debug('Page', page)

输出:

2014/09/02 14:41:07 [D] Page 10

当然除了上面的方法之外,还有两个方法可以用来获取表单参数:

名称 原型 描述
GetStrings func (c *Controller) GetStrings(key string) []string 用来获取比如多选框的值
GetFile func (c *Controller) GetFile(key string) (multipart.File, *multipart.FileHeader, error) 用来获取上传的文件

好了,其实一般情况下,获取路由参数和表单参数不会对用户如此透明,直接用GetXXX方法获取就可以了。

作者jemygraw·2014-09-02·

http://golanghome.com/post/327

(0)

相关推荐