donglian1953 2014-09-09 08:42
浏览 551
已采纳

golang服务器上传文件响应网:: ERR_EMPTY_RESPONSE

I am uploading a small audio file to server using DART + golang. Everything kinda works fine, until I POST and go doesn't return anything. I would like to return filename so I can change the label text on the input.

1) GOLANG:

import (
    "encoding/json"
    "io/ioutil"
    "log"
    "net/http"
    "time"

    "fmt"
    "os"
    "io"
)

http.HandleFunc("/upload", webUploadHandler)

[...] 

func webUploadHandler(w http.ResponseWriter, r *http.Request) {

   file, header, err := r.FormFile("file") // the FormFile function takes in the POST input id file
   defer file.Close()

   if err != nil {
      fmt.Fprintln(w, err)
      return
   }

   out, err := os.Create("/tmp/uploadedfile")

   if err != nil {
      fmt.Fprintf(w, "Unable to create the file for writing. Check your write access privilege")
      return
   }


   defer out.Close()

   // write the content from POST to the file
   _, err = io.Copy(out, file)
   if err != nil {
      fmt.Fprintln(w, err)
   }

   fmt.Fprintf(w,"File uploaded successfully : ")
   fmt.Fprintf(w, header.Filename)

}

2) DART response, alert

window.alert("upload complete"); works

3) ERROR in Chromium Console:

POST http://localhost:9999/upload net::ERR_EMPTY_RESPONSE 

I'm quite new to GOLANG so any help will me much appreciated.

  • 写回答

1条回答 默认 最新

  • doushai4890 2014-09-09 10:14
    关注

    First error in the code above:

    defer file.Close()
    

    was before checking

    if err != nil
    

    -- UPDATE

    and missing part 2, in DART:

    req.setRequestHeader("Content-type","multipart/form-data");
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序