doukanxi4246 2018-12-30 15:09
浏览 421
已采纳

无法从ajax请求获取Golang中的post参数

On the client side I have code:

    let response = await fetch('/getInfo', {
      credentials: 'same-origin',
      method: 'POST',
      body: JSON.stringify({filename: "file.jpg"})
    });

Code on the server side:

    fmt.Println(c.PostForm("filename")) // empty

Why is it empty? How to get value of c.PostForm("filename")?

  • 写回答

1条回答 默认 最新

  • duanfangbunao36970 2018-12-30 15:45
    关注

    This code decodes JSON object from request body:

    // Request is structure to encode request body
    type Request struct {
        FileName string `json:"filename"`
    }
    
    // ServeHTTP is request handler
    func (h handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
        decoder := json.NewDecoder(r.Body)
        var req Request
        err := decoder.Decode(&req)
        if err != nil {
            // handle error
            return
        }
        // process request
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 VB.NET操作免驱摄像头
  • ¥15 笔记本上移动热点开关状态查询
  • ¥85 类鸟群Boids——仿真鸟群避障的相关问题
  • ¥15 CFEDEM自带算例错误,如何解决?
  • ¥15 有没有会使用flac3d软件的家人
  • ¥20 360摄像头无法解绑使用,请教解绑当前账号绑定问题,
  • ¥15 docker实践项目
  • ¥15 利用pthon计算薄膜结构的光导纳
  • ¥15 海康hlss视频流怎么播放
  • ¥15 Paddleocr:out of memory error on GPU