码迷,mamicode.com
首页 > Web开发 > 详细

go web gin 上传文件

时间:2021-02-26 13:25:16      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:default   charset   package   ade   log   BMI   serve   err   nic   

 

main.go


 

package main

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

func main()  {
	r :=gin.Default()
	r.LoadHTMLFiles("./upload.html")
	r.GET("/upload", func(c *gin.Context) {
		c.HTML(http.StatusOK,"upload.html",nil )
	})
	r.POST("/upload", func(c *gin.Context) {
		file,err :=c.FormFile("f1")
		if err != nil{
			c.JSON(http.StatusInternalServerError,gin.H{
				"message":err.Error(),
			})
		} else {
			dst := path.Join("./"+file.Filename)
			c.SaveUploadedFile(file,dst)
			c.JSON(http.StatusOK,gin.H{
				"message":"ok",
				"name":file.Filename,
			})


		}
		//log.Printf(file.Filename)

	})

	r.Run(":9999")

	/*

	报错信息
	{
	"message": "request Content-Type isn‘t multipart/form-data"
	}
	*/
}

  

upload.html


 

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
{{/*
不要忘记 请求文件类型

*/}}

<form method="post" enctype="multipart/form-data"> {{/**/}} <input type="file" name="f1" > <input type="submit" value="提交"> </form> </body> </html>

  

 

go web gin 上传文件

标签:default   charset   package   ade   log   BMI   serve   err   nic   

原文地址:https://www.cnblogs.com/zexin88/p/14450121.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!