- 16 May, 2014 9 commits
-
-
astaxie committed
-
astaxie committed
-
astaxie committed
-
astaxie committed
-
// 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"}astaxie committed -
astaxie committed
-
Lin Luxiang committed
-
Donald Zhan committed
-
Kyle McCullough committed
-
- 14 May, 2014 1 commit
-
-
Update app.go
astaxie committed
-
- 13 May, 2014 1 commit
-
-
Francois committed
-
- 05 May, 2014 4 commits
-
-
Update Session package README.md
astaxie committed -
Update the json format of session for file, redis, mysql, cookie, there are errors in these json string, such as after the param `ProviderConfig` and there is a lost of `"` in the line 61 of the `gclifetime`.
luosangnanka committed -
Update the json format of session for file, redis, mysql, there are errors in these json string, after `ProviderConfig` params.
luosangnanka committed -
Update the json format of session for redis, there is an error in that json string
luosangnanka committed
-
- 14 Apr, 2014 1 commit
-
-
astaxie committed
-
- 10 Apr, 2014 2 commits
- 08 Apr, 2014 3 commits
- 07 Apr, 2014 1 commit
-
-
astaxie committed
-
- 05 Apr, 2014 5 commits
- 04 Apr, 2014 12 commits
- 03 Apr, 2014 1 commit
-
-
slene committed
-