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
824e3f8f
Commit
824e3f8f
authored
Oct 29, 2014
by
astaxie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the only file upload param
parent
1822dd95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
httplib.go
httplib/httplib.go
+2
-2
No files found.
httplib/httplib.go
View file @
824e3f8f
...
...
@@ -275,7 +275,7 @@ func (b *BeegoHttpRequest) getResponse() (*http.Response, error) {
}
else
{
b
.
url
=
b
.
url
+
"?"
+
paramBody
}
}
else
if
b
.
req
.
Method
==
"POST"
&&
b
.
req
.
Body
==
nil
&&
len
(
paramBody
)
>
0
{
}
else
if
b
.
req
.
Method
==
"POST"
&&
b
.
req
.
Body
==
nil
{
if
len
(
b
.
files
)
>
0
{
bodyBuf
:=
&
bytes
.
Buffer
{}
bodyWriter
:=
multipart
.
NewWriter
(
bodyBuf
)
...
...
@@ -303,7 +303,7 @@ func (b *BeegoHttpRequest) getResponse() (*http.Response, error) {
b
.
Header
(
"Content-Type"
,
contentType
)
b
.
req
.
Body
=
ioutil
.
NopCloser
(
bodyBuf
)
b
.
req
.
ContentLength
=
int64
(
bodyBuf
.
Len
())
}
else
{
}
else
if
len
(
paramBody
)
>
0
{
b
.
Header
(
"Content-Type"
,
"application/x-www-form-urlencoded"
)
b
.
Body
(
paramBody
)
}
...
...
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