1. 12 4月, 2014 1 次提交
  2. 11 4月, 2014 1 次提交
  3. 10 4月, 2014 4 次提交
    • A
      beego:add post test case · 1ea449aa
      astaxie 提交于
      1ea449aa
    • A
      beego:query data from Form & params · b212ec8d
      astaxie 提交于
      b212ec8d
    • A
      beego: fix flash errors · e50cbecf
      astaxie 提交于
      e50cbecf
    • A
      context:add Bind function · 127b85bc
      astaxie 提交于
      // Bind data from request.Form[key] to dest
      // like
      /?id=123&isok=true&ft=1.2&ol[0]=1&ol[1]=2&ul[]=str&ul[]=array&user.Name=
      astaxie
      // var id int  beegoInput.Bind(&id, "id")  id ==123
      // var isok bool  beegoInput.Bind(&isok, "isok")  id ==true
      // var ft float64  beegoInput.Bind(&ft, "ft")  ft ==1.2
      // ol := make([]int, 0, 2)  beegoInput.Bind(&ol, "ol")  ol ==[1 2]
      // ul := make([]string, 0, 2)  beegoInput.Bind(&ul, "ul")  ul ==[str
      array]
      // user struct{Name}  beegoInput.Bind(&user, "user")  user ==
      {Name:"astaxie"}
      127b85bc
  4. 09 4月, 2014 6 次提交
  5. 08 4月, 2014 3 次提交
  6. 07 4月, 2014 1 次提交
  7. 06 4月, 2014 5 次提交
  8. 04 4月, 2014 12 次提交
  9. 03 4月, 2014 4 次提交
  10. 02 4月, 2014 2 次提交
  11. 01 4月, 2014 1 次提交