Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
c4c9a50c
Commit
c4c9a50c
authored
Apr 01, 2015
by
astaxie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix #1081
parent
a311d712
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
44 deletions
+28
-44
controller.go
controller.go
+28
-44
No files found.
controller.go
View file @
c4c9a50c
...
...
@@ -406,106 +406,90 @@ func (c *Controller) GetStrings(key string, def ...[]string) []string {
// GetInt returns input as an int or the default value while it's present and input is blank
func
(
c
*
Controller
)
GetInt
(
key
string
,
def
...
int
)
(
int
,
error
)
{
var
defv
int
if
len
(
def
)
>
0
{
defv
=
def
[
0
]
}
if
strv
:=
c
.
Ctx
.
Input
.
Query
(
key
);
strv
!=
""
{
return
strconv
.
Atoi
(
strv
)
}
else
if
len
(
def
)
>
0
{
return
def
[
0
],
nil
}
else
{
return
defv
,
nil
return
strconv
.
Atoi
(
strv
)
}
}
// GetInt8 return input as an int8 or the default value while it's present and input is blank
func
(
c
*
Controller
)
GetInt8
(
key
string
,
def
...
int8
)
(
int8
,
error
)
{
var
defv
int8
if
len
(
def
)
>
0
{
defv
=
def
[
0
]
}
if
strv
:=
c
.
Ctx
.
Input
.
Query
(
key
);
strv
!=
""
{
i64
,
err
:=
strconv
.
ParseInt
(
strv
,
10
,
8
)
i8
:=
int8
(
i64
)
return
i8
,
err
}
else
if
len
(
def
)
>
0
{
return
def
[
0
],
nil
}
else
{
return
defv
,
nil
i64
,
err
:=
strconv
.
ParseInt
(
strv
,
10
,
8
)
i8
:=
int8
(
i64
)
return
i8
,
err
}
}
// GetInt16 returns input as an int16 or the default value while it's present and input is blank
func
(
c
*
Controller
)
GetInt16
(
key
string
,
def
...
int16
)
(
int16
,
error
)
{
var
defv
int16
if
len
(
def
)
>
0
{
defv
=
def
[
0
]
}
if
strv
:=
c
.
Ctx
.
Input
.
Query
(
key
);
strv
!=
""
{
i64
,
err
:=
strconv
.
ParseInt
(
strv
,
10
,
16
)
i16
:=
int16
(
i64
)
return
i16
,
err
}
else
if
len
(
def
)
>
0
{
return
def
[
0
],
nil
}
else
{
return
defv
,
nil
i64
,
err
:=
strconv
.
ParseInt
(
strv
,
10
,
16
)
i16
:=
int16
(
i64
)
return
i16
,
err
}
}
// GetInt32 returns input as an int32 or the default value while it's present and input is blank
func
(
c
*
Controller
)
GetInt32
(
key
string
,
def
...
int32
)
(
int32
,
error
)
{
var
defv
int32
if
len
(
def
)
>
0
{
defv
=
def
[
0
]
}
if
strv
:=
c
.
Ctx
.
Input
.
Query
(
key
);
strv
!=
""
{
i64
,
err
:=
strconv
.
ParseInt
(
c
.
Ctx
.
Input
.
Query
(
key
),
10
,
32
)
i32
:=
int32
(
i64
)
return
i32
,
err
}
else
if
len
(
def
)
>
0
{
return
def
[
0
],
nil
}
else
{
return
defv
,
nil
i64
,
err
:=
strconv
.
ParseInt
(
c
.
Ctx
.
Input
.
Query
(
key
),
10
,
32
)
i32
:=
int32
(
i64
)
return
i32
,
err
}
}
// GetInt64 returns input value as int64 or the default value while it's present and input is blank.
func
(
c
*
Controller
)
GetInt64
(
key
string
,
def
...
int64
)
(
int64
,
error
)
{
var
defv
int64
if
len
(
def
)
>
0
{
defv
=
def
[
0
]
}
if
strv
:=
c
.
Ctx
.
Input
.
Query
(
key
);
strv
!=
""
{
return
strconv
.
ParseInt
(
strv
,
10
,
64
)
}
else
if
len
(
def
)
>
0
{
return
def
[
0
],
nil
}
else
{
return
defv
,
nil
return
strconv
.
ParseInt
(
strv
,
10
,
64
)
}
}
// GetBool returns input value as bool or the default value while it's present and input is blank.
func
(
c
*
Controller
)
GetBool
(
key
string
,
def
...
bool
)
(
bool
,
error
)
{
var
defv
bool
if
len
(
def
)
>
0
{
defv
=
def
[
0
]
}
if
strv
:=
c
.
Ctx
.
Input
.
Query
(
key
);
strv
!=
""
{
return
strconv
.
ParseBool
(
strv
)
}
else
if
len
(
def
)
>
0
{
return
def
[
0
],
nil
}
else
{
return
defv
,
nil
return
strconv
.
ParseBool
(
strv
)
}
}
// GetFloat returns input value as float64 or the default value while it's present and input is blank.
func
(
c
*
Controller
)
GetFloat
(
key
string
,
def
...
float64
)
(
float64
,
error
)
{
var
defv
float64
if
len
(
def
)
>
0
{
defv
=
def
[
0
]
}
if
strv
:=
c
.
Ctx
.
Input
.
Query
(
key
);
strv
!=
""
{
return
strconv
.
ParseFloat
(
c
.
Ctx
.
Input
.
Query
(
key
),
64
)
return
strconv
.
ParseFloat
(
strv
,
64
)
}
else
if
len
(
def
)
>
0
{
return
def
[
0
],
nil
}
else
{
return
defv
,
nil
return
strconv
.
ParseFloat
(
strv
,
64
)
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment