gin系列-文件上傳


單文件上傳

前端

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>文件上傳</title>
</head>
<body>
<form action="/upload" method="post"  enctype="multipart/form-data">  //upload跳轉控制
    <input type="file" name="f1">   //和c.FormFile一致
    <input type="submit" value="上傳">
</form>
</body>
</html>

后端

#main.go
package main

import (
	"github.com/gin-gonic/gin"
	"net/http"
	"path"
)

func main() {
	r := gin.Default()
	//處理multipart forms提交文件時默認的內存限制是32 MiB
	r.MaxMultipartMemory = 8    //router.MaxMultipartMemory = 8 << 20  // 8 MiB
	r.LoadHTMLFiles("./index.html")
	r.GET("/index", func(c *gin.Context) {
		c.HTML(http.StatusOK,"index.html",nil)
	})
	r.POST("/upload", func(c *gin.Context) {
		//從請求中讀取文件
		f, err := c.FormFile("f1")  //和從請求中獲取攜帶的參數一樣
		if err != nil {
			c.JSON(http.StatusBadRequest, gin.H{
				"error": err.Error(),
			})
		}else {
			//將讀取到的文件保存到本地(服務端)
			//dst := fmt.Sprintf("./%s", f.Filename)
			dst := path.Join("./", f.Filename)
			_  = c.SaveUploadedFile(f,dst)
			c.JSON(http.StatusOK, gin.H{
				"status":"ok",
			})
		}
	})

	r.Run(":9090")
}


多文件上傳

前端

#index.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>文件上傳</title>
</head>
<body>
<form action="/upload" method="post" enctype="multipart/form-data">
    <input type="file" name="f1">
    <input type="file" name="f1">
    <input type="submit" value="上傳">
</form>
</body>
</html>

后端

#main.go
package main

import (
	"fmt"
	"github.com/gin-gonic/gin"
	"log"
	"net/http"
	"path"
)

func main() {
	r := gin.Default()
	//處理multipart forms提交文件時默認的內存限制是32 MiB
	r.MaxMultipartMemory = 8    //router.MaxMultipartMemory = 8 << 20  // 8 MiB
	r.LoadHTMLFiles("./index.html")
	r.GET("/index", func(c *gin.Context) {
		c.HTML(http.StatusOK,"index.html",nil)
	})
	r.POST("/upload", func(c *gin.Context) {
		//從請求中讀取文件
		//f, err := c.FormFile("f1")  //和從請求中獲取攜帶的參數一樣
		//if err != nil {
		//	c.JSON(http.StatusBadRequest, gin.H{
		//		"error": err.Error(),
		//	})
		//}else {
		//	//將讀取到的文件保存到本地(服務端)
		//	//dst := fmt.Sprintf("./%s", f.Filename)
		//	dst := path.Join("./", f.Filename)
		//	_  = c.SaveUploadedFile(f,dst)
		//	c.JSON(http.StatusOK, gin.H{
		//		"status":"ok",
		//	})
		//}

		form, _ := c.MultipartForm()
		files := form.File["f1"]
		for _, file := range files {
			log.Print(file.Filename)
			dst := path.Join("./", file.Filename)
			//上傳文件到指定的目錄
			c.SaveUploadedFile(file, dst)
		}
		c.JSON(http.StatusOK, gin.H{
			"message" : fmt.Sprintf("%d files uploaded!", len(files)),
		})
	})
	r.Run(":9090")
}




免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM