Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
6a260ca7
authored
2013-06-17 01:03:04 -0700
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge pull request #71 from yecrane/master
form获取相同名字的对象数组值
2 parents
384fa8fd
27896c57
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
controller.go
controller.go
View file @
6a260ca
...
...
@@ -261,6 +261,18 @@ func (c *Controller) GetString(key string) string {
return
c
.
Input
()
.
Get
(
key
)
}
func
(
c
*
Controller
)
GetStrings
(
key
string
)
[]
string
{
r
:=
c
.
Ctx
.
Request
;
if
r
.
Form
==
nil
{
return
[]
string
{}
}
vs
:=
r
.
Form
[
key
]
if
len
(
vs
)
>
0
{
return
vs
}
return
[]
string
{}
}
func
(
c
*
Controller
)
GetInt
(
key
string
)
(
int64
,
error
)
{
return
strconv
.
ParseInt
(
c
.
Input
()
.
Get
(
key
),
10
,
64
)
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment