为了账号安全,请及时绑定邮箱和手机立即绑定

Go net/http 请求正文始终为 nil

Go net/http 请求正文始终为 nil

Go
宝慕林4294392 2023-05-04 16:07:53
http 请求正文始终为零。为什么会这样?我正在使用 gokit 工具包。下面的代码是处理程序的一部分。    func decodeAddRequest(_ context.Context, r *http1.Request) (interface{}, error) {    req := endpoint.AddRequest{}    p, _ := ioutil.ReadAll(r.Body)    fmt.Printf("%s\n", p)    err := json.NewDecoder(r.Body).Decode(&req)    return req, err}我的 POST JSON 请求如下所示{    "title": "test test",    "complete": false}保存到数据库的是{    "title": "",    "complete": false}类型有:type AddRequest struct {    Todo io.Todo `json:"todo"`}type Todo struct {    Id       bson.ObjectId `json:"id" bson:"_id"`    Title    string        `json:"title" bson:"title"`    Complete bool          `json:"complete" bson:"complete"`}
查看完整描述

1 回答

?
慕盖茨4494581

TA贡献1850条经验 获得超11个赞

JSON 适用于待办事项,而不适用于 CreateRequest。解散待办事项:

err := json.NewDecoder(r.Body).Decode(&req.Todo)


查看完整回答
反对 回复 2023-05-04
  • 1 回答
  • 0 关注
  • 95 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信