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 苹果系统的mac m1芯片的笔记本使用ce修改器使用不了
  • ¥15 单相逆变的电压电流双闭环中进行低通滤波PID算法改进
  • ¥15 关于#java#的问题,请各位专家解答!
  • ¥15 如何卸载arcgis 10.1 data reviewer for desktop
  • ¥15 共享文件夹会话中为什么会有WORKGROUP
  • ¥15 关于#python#的问题:使用ATL02数据解算光子脚点的坐标(操作系统-windows)
  • ¥115 关于#python#的问题:未加密前两个软件都可以打开,加密后只有A软件可打开,B软件可以打开但读取不了数据
  • ¥15 在matlab中Application Compiler后的软件无法打开
  • ¥15 想问一下STM32创建工程模板时遇到得问题
  • ¥15 Fiddler抓包443