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
bf6b0d3e
authored
2015-03-06 14:12:24 +0800
by
Hubery
Committed by
astaxie
2015-05-25 09:10:34 +0800
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
add JsonBody
1 parent
af71289c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
httplib/httplib.go
httplib/httplib.go
View file @
bf6b0d3
...
...
@@ -253,6 +253,22 @@ func (b *BeegoHttpRequest) Body(data interface{}) *BeegoHttpRequest {
return
b
}
// JsonBody adds request raw body encoding by JSON.
func
(
b
*
BeegoHttpRequest
)
JsonBody
(
obj
interface
{})
(
*
BeegoHttpRequest
,
error
)
{
if
b
.
req
.
Body
==
nil
&&
obj
!=
nil
{
buf
:=
bytes
.
NewBuffer
(
nil
)
enc
:=
json
.
NewEncoder
(
buf
)
if
err
:=
enc
.
Encode
(
obj
);
err
!=
nil
{
return
b
,
err
}
b
.
req
.
Body
=
ioutil
.
NopCloser
(
buf
)
b
.
req
.
ContentLength
=
int64
(
buf
.
Len
())
b
.
req
.
Header
.
Set
(
"Content-Type"
,
"application/json"
)
}
return
b
,
nil
}
func
(
b
*
BeegoHttpRequest
)
buildUrl
(
paramBody
string
)
{
// build GET url with query string
if
b
.
req
.
Method
==
"GET"
&&
len
(
paramBody
)
>
0
{
...
...
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