如何在go gin中从JSON发布文件?

时间:2017-07-15 18:28:12

标签: json go go-gin

我想保存JSON发布的图片文件。

以下是帖子的结构:

type Article struct {
    Title   string `json:"title"`
    Body string `json:"body"`
    File    []byte `json:"file"`
}

处理程序是:

   func PostHandler(c *gin.Context) {
        var err error
        var json Article
        err = c.BindJSON(&json)
        if err != nil {
            log.Panic(err)
        }

    //handle photo upload
        var filename string
        file, header, err := json.File  //assignment count mismatch: 3 = 1

        if err != nil {
            fmt.Println(err)
            filename = ""

        } else {
            data, err := ioutil.ReadAll(file)
            if err != nil {
                fmt.Println(err)
                return
            }

            filename = path.Join("media", +shared.RandString(5)+path.Ext(header.Filename))

            err = ioutil.WriteFile(filename, data, 0777)
            if err != nil {
                io.WriteString(w, err.Error())
                return
            }

        }
...

但是我得到了

  

分配计数不匹配:3 = 1

我从一个工作的多部分表单处理程序中复制了文件处理部分,该处理程序运行良好,但很明显,

file, header, err := r.FormFile("uploadfile")

无法转换为JSON处理。

我查看了杜松子酒文档,但找不到涉及json文件处理的示例。 那么我该如何解决这个问题?

2 个答案:

答案 0 :(得分:2)

在您的代码中,您说navbar brand类型文章定义为

var json Article

文件的类型为type Article struct { Title string `json:"title"` Body string `json:"body"` File []byte `json:"file"` } 。类型字节不会返回除持有的内容之外的任何内容

您的[]byteArticle.File不同,其中r.FormFile是一种返回3项的方法

所以FormFile不是file, header, err := json.File

参见godocs的实现和方法描述 - > here

答案 1 :(得分:0)

使用Gin获取上传的文件

我认为您的问题是“使用杜松子酒,我如何获取上传的文件?”。大多数开发人员不上传带有JSON的文件,虽然可以这样做,但是需要将文件编码为base64字符串(并使文件大小增加约33%)。

常见(且效率更高)的做法是使用“ multipart / form-data”编码上传文件。其他人提供的file, header, err := c.Request.FormFile("file")代码可以工作,但是劫持了Gin扩展的下划线“ net / http”程序包。

我的建议是使用ShouldBind,但您也可以使用Gin软件包提供的FormFileMultipartForm方法。

以下示例。杜松子酒的https://github.com/gin-gonic/gin#model-binding-and-validationhttps://github.com/gin-gonic/gin#upload-files页面上也提供了类似(但不太详细)的解释。


上传一个文件


客户

HTML

<form action="/upload" method="POST">
  <input type="file" name="file">
  <input type="submit">
</form>

卷曲

curl -X POST http://localhost:8080/upload \
  -F "file=../path-to-file/file.zip" \
  -H "Content-Type: multipart/form-data"

服务器

开始

package main

import (
    "github.com/gin-gonic/gin"
    "log"
    "net/http"
    "io/ioutil"
)

type Form struct {
    File *multipart.FileHeader `form:"file" binding:"required"`
}

func main() {
    router := gin.Default()

    // Set a lower memory limit for multipart forms (default is 32 MiB)
    // router.MaxMultipartMemory = 8 << 20  // 8 MiB

    router.POST("/upload", func(c *gin.Context) {

        // Using `ShouldBind`
        // --------------------
        var form Form
        _ := c.ShouldBind(&form)

        // Get raw file bytes - no reader method
        // openedFile, _ := form.File.Open()
        // file, _ := ioutil.ReadAll(openedFile)

        // Upload to disk
        // `form.File` has io.reader method
        // c.SaveUploadedFile(form.File, path)
        // --------------------

        // Using `FormFile`
        // --------------------
        // formFile, _ := c.FormFile("file")

        // Get raw file bytes - no reader method
        // openedFile, _ := formFile.Open()
        // file, _ := ioutil.ReadAll(openedFile)

        // Upload to disk
        // `formFile` has io.reader method
        // c.SaveUploadedFile(formFile, path)
        // --------------------
        
        c.String(http.StatusOK, "Files uploaded")
    })

    // Listen and serve on 0.0.0.0:8080
    router.Run(":8080")
}

上传多个文件


客户

HTML

<form action="/upload" method="POST" multiple="multiple">
  <input type="file" name="files">
  <input type="submit">
</form>

卷曲

curl -X POST http://localhost:8080/upload \
  -F "files=../path-to-file/file1.zip" \
  -F "files=../path-to-file/file2.zip" \
  -H "Content-Type: multipart/form-data"

服务器

开始

package main

import (
    "github.com/gin-gonic/gin"
    "log"
    "net/http"
    "io/ioutil"
)

type Form struct {
    Files []*multipart.FileHeader `form:"files" binding:"required"`
}

func main() {
    router := gin.Default()

    // Set a lower memory limit for multipart forms (default is 32 MiB)
    // router.MaxMultipartMemory = 8 << 20  // 8 MiB

    router.POST("/upload", func(c *gin.Context) {

        // Using `ShouldBind`
        // --------------------
        var form Form
        _ := c.ShouldBind(&form)

        // for _, formFile := range form.Files {

          // Get raw file bytes - no reader method
          // openedFile, _ := formFile.Open()
          // file, _ := ioutil.ReadAll(openedFile)

          // Upload to disk
          // `formFile` has io.reader method
          // c.SaveUploadedFile(formFile, path)

        // }
        // --------------------

        // Using `MultipartForm`
        // --------------------
        // form, _ := c.MultipartForm()
        // formFiles, _ := form["files[]"]

        // for _, formFile := range formFiles {

          // Get raw file bytes - no reader method
          // openedFile, _ := formFile.Open()
          // file, _ := ioutil.ReadAll(openedFile)

          // Upload to disk
          // `formFile` has io.reader method
          // c.SaveUploadedFile(formFile, path)

        // }
        // --------------------
        
        c.String(http.StatusOK, "Files uploaded")
    })

    // Listen and serve on 0.0.0.0:8080
    router.Run(":8080")
}