Blame view

API/Upload.go 1.07 KB
74de40c6   aarongao   init
1
2
3
package Api

import (
cfcccc99   aarongao   ok
4
	"fmt"
74de40c6   aarongao   init
5
6
7
	"github.com/aarongao/tools"
	"github.com/gin-gonic/gin"
	"path"
cfcccc99   aarongao   ok
8
	"strconv"
74de40c6   aarongao   init
9
10
	"time"
)
cfcccc99   aarongao   ok
11

74de40c6   aarongao   init
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// @Title 上传文件
// @Description 上传
// @Accept  json
// @Produce  json
// @Param   file     1    file     true        "文件"
// @Success 200 {object} tools.ResponseSeccess "{"errcode":0,"result":"图片地址"}"
// @Failure 500 {object} tools.ResponseError "{"errcode":1,"errmsg":"错误原因"}"
// @Router /Upload? [post]
func Upload(c *gin.Context) {
	c.Header("Access-Control-Allow-Origin", c.Request.Header.Get("Origin"))
	c.Header("Access-Control-Allow-Credentials", "true")

	file, err := c.FormFile("file")
	if err != nil {
		c.JSON(200, tools.ResponseError{
			1,
			"a Bad request",
		})
		return
	}

	fileName := file.Filename
	fileExt := path.Ext(fileName)
	filePath := "Upload/" + strconv.Itoa(int(time.Now().UnixNano())) + fileExt

	if err := c.SaveUploadedFile(file, filePath); err != nil {
		fmt.Println(err)
		c.JSON(200, tools.ResponseError{
			1,
			"upload file err",
		})
		return
	}
	c.JSON(200, tools.ResponseSeccess{
		0,
		"/" + filePath,
	})
}
cfcccc99   aarongao   ok