實作檔案上傳和下載
Gin是一款使用Go語言開發的Web開發框架,它具有高效、易用和靈活等特點。針對檔案上傳和下載,利用Gin框架可以輕鬆實現這些功能。本文將介紹如何利用Gin框架實作檔案上傳下載。
一、檔案上傳
在Gin框架中,檔案上傳需要使用到MultipartForm表單。首先,需要定義路由和處理函數:
router.POST("/upload", uploadHandler)
func uploadHandler(c *gin.Context) {
file, err := c.FormFile("file") if err != nil { c.JSON(http.StatusBadRequest, gin.H{ "error": err.Error(), }) return } filename := filepath.Base(file.Filename) if err := c.SaveUploadedFile(file, filename); err != nil { c.JSON(http.StatusBadRequest, gin.H{ "error": err.Error(), }) return } c.JSON(http.StatusOK, gin.H{ "message": fmt.Sprintf("'%s' uploaded!", filename), })
}
在上傳文件的處理函數中,先透過c.FormFile()函數取得上傳的文件,並進行錯誤處理。然後取得檔案名,並利用c.SaveUploadedFile()函數將檔案儲存到指定目錄下。最後,透過JSON返回上傳結果。
啟動Gin服務,造訪http://localhost:8080/upload,將會看到以下介面:
https://user-images.githubusercontent.com/36320997/129822689- f45e849c-7cae-4ad9-9107-aae98f76d34c.png
檔案上成功後,將會看到如下JSON回傳結果:
{
"message": "'test.txt' uploaded!"
}
##二、檔案下載
檔案下載需要用到Gin框架的靜態檔案服務。可透過以下操作實現:
1.在應用程式中建立任意目錄,用於保存下載的檔案。
2.在Gin路由中,定義存取該目錄下的文件,如下:
router.StaticFS("/download", http.Dir("tmp"))
3.在路由處理函數中,根據檔案名稱定義下載接口,如下:
router.GET("/download/:filename", downloadHandler)
func downloadHandler(c *gin.Context) {
filename := c.Param("filename") file := "./tmp/" + filename // 通过配置文件获取下载目录地址,如: "./tmp/" + filename fi, err := os.Stat(file) if err != nil { c.JSON(http.StatusBadRequest, gin.H{ "error": err.Error(), }) return } c.Writer.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=%s", fi.Name())) c.Writer.Header().Set("Content-Type", "application/octet-stream") c.File(file)
}
在檔案下載的處理函數中,需要透過c.Param()取得檔案名,判定檔案是否存在,設定下載HTTP回應頭,最後將檔案寫入回應中,實現檔案下載功能。
啟動Gin服務,造訪以下連結 http://localhost:8080/download/test.txt ,即可下載test.txt檔案。
三、小結
透過Gin框架實現檔案上傳下載功能,優雅簡潔,上述程式碼僅為基礎實作。實際使用中還需要考慮文件儲存的地方及其文件保存方式等,以及後續的文件操作等,讀者可結合自己的實際情況完善。
以上是golang gin如何的詳細內容。更多資訊請關注PHP中文網其他相關文章!