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
e307bd7b
authored
2014-04-15 05:05:53 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
beego:hotfix for multipart/form-data
1 parent
a99802b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
9 deletions
context/input.go
context/input.go
View file @
e307bd7
...
...
@@ -264,20 +264,15 @@ func (input *BeegoInput) SetData(key, val interface{}) {
input
.
Data
[
key
]
=
val
}
// parseForm or parseMultiForm based on Content-type
func
(
input
*
BeegoInput
)
ParseFormOrMulitForm
(
maxMemory
int64
)
error
{
// Parse the body depending on the content type.
switch
input
.
Header
(
"Content-Type"
)
{
case
"application/x-www-form-urlencoded"
:
// Typical form.
if
err
:=
input
.
Request
.
ParseForm
();
err
!=
nil
{
return
errors
.
New
(
"Error parsing request body:"
+
err
.
Error
())
}
case
"multipart/form-data"
:
if
strings
.
Contains
(
input
.
Header
(
"Content-Type"
),
"multipart/form-data"
)
{
if
err
:=
input
.
Request
.
ParseMultipartForm
(
maxMemory
);
err
!=
nil
{
return
errors
.
New
(
"Error parsing request body:"
+
err
.
Error
())
}
}
else
if
err
:=
input
.
Request
.
ParseForm
();
err
!=
nil
{
return
errors
.
New
(
"Error parsing request body:"
+
err
.
Error
())
}
return
nil
}
...
...
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