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
8b9d6eee
Commit
8b9d6eee
authored
Sep 02, 2016
by
astaxie
Committed by
GitHub
Sep 02, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2132 from Zaaksam/master
beego.ParseForm() improvement
parents
c697b980
11ef5929
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
18 deletions
+60
-18
templatefunc.go
templatefunc.go
+23
-9
templatefunc_test.go
templatefunc_test.go
+37
-9
No files found.
templatefunc.go
View file @
8b9d6eee
...
@@ -280,15 +280,8 @@ func AssetsCSS(src string) template.HTML {
...
@@ -280,15 +280,8 @@ func AssetsCSS(src string) template.HTML {
}
}
// ParseForm will parse form values to struct via tag.
// ParseForm will parse form values to struct via tag.
func
ParseForm
(
form
url
.
Values
,
obj
interface
{})
error
{
// Support for anonymous struct.
objT
:=
reflect
.
TypeOf
(
obj
)
func
parseFormToStruct
(
form
url
.
Values
,
objT
reflect
.
Type
,
objV
reflect
.
Value
)
error
{
objV
:=
reflect
.
ValueOf
(
obj
)
if
!
isStructPtr
(
objT
)
{
return
fmt
.
Errorf
(
"%v must be a struct pointer"
,
obj
)
}
objT
=
objT
.
Elem
()
objV
=
objV
.
Elem
()
for
i
:=
0
;
i
<
objT
.
NumField
();
i
++
{
for
i
:=
0
;
i
<
objT
.
NumField
();
i
++
{
fieldV
:=
objV
.
Field
(
i
)
fieldV
:=
objV
.
Field
(
i
)
if
!
fieldV
.
CanSet
()
{
if
!
fieldV
.
CanSet
()
{
...
@@ -296,6 +289,14 @@ func ParseForm(form url.Values, obj interface{}) error {
...
@@ -296,6 +289,14 @@ func ParseForm(form url.Values, obj interface{}) error {
}
}
fieldT
:=
objT
.
Field
(
i
)
fieldT
:=
objT
.
Field
(
i
)
if
fieldT
.
Anonymous
&&
fieldT
.
Type
.
Kind
()
==
reflect
.
Struct
{
err
:=
parseFormToStruct
(
form
,
fieldT
.
Type
,
fieldV
)
if
err
!=
nil
{
return
err
}
continue
}
tags
:=
strings
.
Split
(
fieldT
.
Tag
.
Get
(
"form"
),
","
)
tags
:=
strings
.
Split
(
fieldT
.
Tag
.
Get
(
"form"
),
","
)
var
tag
string
var
tag
string
if
len
(
tags
)
==
0
||
len
(
tags
[
0
])
==
0
{
if
len
(
tags
)
==
0
||
len
(
tags
[
0
])
==
0
{
...
@@ -384,6 +385,19 @@ func ParseForm(form url.Values, obj interface{}) error {
...
@@ -384,6 +385,19 @@ func ParseForm(form url.Values, obj interface{}) error {
return
nil
return
nil
}
}
// ParseForm will parse form values to struct via tag.
func
ParseForm
(
form
url
.
Values
,
obj
interface
{})
error
{
objT
:=
reflect
.
TypeOf
(
obj
)
objV
:=
reflect
.
ValueOf
(
obj
)
if
!
isStructPtr
(
objT
)
{
return
fmt
.
Errorf
(
"%v must be a struct pointer"
,
obj
)
}
objT
=
objT
.
Elem
()
objV
=
objV
.
Elem
()
return
parseFormToStruct
(
form
,
objT
,
objV
)
}
var
sliceOfInts
=
reflect
.
TypeOf
([]
int
(
nil
))
var
sliceOfInts
=
reflect
.
TypeOf
([]
int
(
nil
))
var
sliceOfStrings
=
reflect
.
TypeOf
([]
string
(
nil
))
var
sliceOfStrings
=
reflect
.
TypeOf
([]
string
(
nil
))
...
...
templatefunc_test.go
View file @
8b9d6eee
...
@@ -110,6 +110,17 @@ func TestHtmlunquote(t *testing.T) {
...
@@ -110,6 +110,17 @@ func TestHtmlunquote(t *testing.T) {
}
}
func
TestParseForm
(
t
*
testing
.
T
)
{
func
TestParseForm
(
t
*
testing
.
T
)
{
type
ExtendInfo
struct
{
Hobby
string
`form:"hobby"`
Memo
string
}
type
OtherInfo
struct
{
Organization
string
`form:"organization"`
Title
string
`form:"title"`
ExtendInfo
}
type
user
struct
{
type
user
struct
{
ID
int
`form:"-"`
ID
int
`form:"-"`
tag
string
`form:"tag"`
tag
string
`form:"tag"`
...
@@ -119,19 +130,24 @@ func TestParseForm(t *testing.T) {
...
@@ -119,19 +130,24 @@ func TestParseForm(t *testing.T) {
Intro
string
`form:",textarea"`
Intro
string
`form:",textarea"`
StrBool
bool
`form:"strbool"`
StrBool
bool
`form:"strbool"`
Date
time
.
Time
`form:"date,2006-01-02"`
Date
time
.
Time
`form:"date,2006-01-02"`
OtherInfo
}
}
u
:=
user
{}
u
:=
user
{}
form
:=
url
.
Values
{
form
:=
url
.
Values
{
"ID"
:
[]
string
{
"1"
},
"ID"
:
[]
string
{
"1"
},
"-"
:
[]
string
{
"1"
},
"-"
:
[]
string
{
"1"
},
"tag"
:
[]
string
{
"no"
},
"tag"
:
[]
string
{
"no"
},
"username"
:
[]
string
{
"test"
},
"username"
:
[]
string
{
"test"
},
"age"
:
[]
string
{
"40"
},
"age"
:
[]
string
{
"40"
},
"Email"
:
[]
string
{
"test@gmail.com"
},
"Email"
:
[]
string
{
"test@gmail.com"
},
"Intro"
:
[]
string
{
"I am an engineer!"
},
"Intro"
:
[]
string
{
"I am an engineer!"
},
"strbool"
:
[]
string
{
"yes"
},
"strbool"
:
[]
string
{
"yes"
},
"date"
:
[]
string
{
"2014-11-12"
},
"date"
:
[]
string
{
"2014-11-12"
},
"organization"
:
[]
string
{
"beego"
},
"title"
:
[]
string
{
"CXO"
},
"hobby"
:
[]
string
{
"Basketball"
},
"memo"
:
[]
string
{
"nothing"
},
}
}
if
err
:=
ParseForm
(
form
,
u
);
err
==
nil
{
if
err
:=
ParseForm
(
form
,
u
);
err
==
nil
{
t
.
Fatal
(
"nothing will be changed"
)
t
.
Fatal
(
"nothing will be changed"
)
...
@@ -164,6 +180,18 @@ func TestParseForm(t *testing.T) {
...
@@ -164,6 +180,18 @@ func TestParseForm(t *testing.T) {
if
y
!=
2014
||
m
.
String
()
!=
"November"
||
d
!=
12
{
if
y
!=
2014
||
m
.
String
()
!=
"November"
||
d
!=
12
{
t
.
Errorf
(
"Date should equal `2014-11-12`, but got `%v`"
,
u
.
Date
.
String
())
t
.
Errorf
(
"Date should equal `2014-11-12`, but got `%v`"
,
u
.
Date
.
String
())
}
}
if
u
.
Organization
!=
"beego"
{
t
.
Errorf
(
"Organization should equal `beego`, but got `%v`"
,
u
.
Organization
)
}
if
u
.
Title
!=
"CXO"
{
t
.
Errorf
(
"Title should equal `CXO`, but got `%v`"
,
u
.
Title
)
}
if
u
.
Hobby
!=
"Basketball"
{
t
.
Errorf
(
"Hobby should equal `Basketball`, but got `%v`"
,
u
.
Hobby
)
}
if
len
(
u
.
Memo
)
!=
0
{
t
.
Errorf
(
"Memo's length should equal 0 but got %v"
,
len
(
u
.
Memo
))
}
}
}
func
TestRenderForm
(
t
*
testing
.
T
)
{
func
TestRenderForm
(
t
*
testing
.
T
)
{
...
...
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