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
3d6408cf
authored
2015-03-13 23:16:18 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge pull request #1070 from fugr/patch-5
add JsonBody
2 parents
c4aa33fb
223f57bb
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 @
3d6408c
...
...
@@ -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