1 Star 0 Fork 10

dongfang/flamego

forked from Flamego/flamego 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
request.go 987 Bytes
一键复制 编辑 原始数据 按行查看 历史
// Copyright 2021 Flamego. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package flamego
import (
"io"
"net/http"
)
// Request is a wrapper of http.Request with handy methods.
type Request struct {
*http.Request
}
// Body returns a RequestBody for the request.
func (r *Request) Body() *RequestBody {
return &RequestBody{reader: r.Request.Body}
}
// RequestBody is a wrapper of http.Request.Body with handy methods.
type RequestBody struct {
reader io.ReadCloser
}
// Bytes reads and returns the content of request body in bytes.
func (r *RequestBody) Bytes() ([]byte, error) {
return io.ReadAll(r.reader)
}
// String reads and returns content of request body in string.
func (r *RequestBody) String() (string, error) {
data, err := r.Bytes()
return string(data), err
}
// ReadCloser returns a ReadCloser of request body.
func (r *RequestBody) ReadCloser() io.ReadCloser {
return r.reader
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/401429542/flamego.git
[email protected]:401429542/flamego.git
401429542
flamego
flamego
main

搜索帮助