1 Star 0 Fork 0

ichub/goconfigserver

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
DownloadFuncService.go 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
leijmdas 提交于 2024-09-04 16:21 . add
package filedown
import (
"fmt"
"gitee.com/ichub/goconfig/common/base/baseutils/fileutils"
"gitee.com/ichub/goweb/common/webserver/funchandler"
//"git.ichub.com/general/esserver/esserver/engineconst"
"github.com/gin-gonic/gin"
"net/http"
)
/*
@Title 文件名称: DownloadFuncService.go
@Description 描述: DownloadFuncService
@Author 作者: leijianming@163.com 时间(2024-02-18 22:38:21)
@Update 作者: leijianming@163.com 时间(2024-02-18 22:38:21)
*/
type DownloadFuncService struct {
funchandler.FuncService
}
func NewDownloadFuncService() *DownloadFuncService {
return new(DownloadFuncService).init()
}
func (this *DownloadFuncService) init() *DownloadFuncService {
this.WebBasePath = "filedown"
this.InitRoute(this, http.MethodPost, "/download")
return this
}
// @Summary 文件下载
// @Tags 文件服务
// @Description download命令
//
// ##// @Param filename query string true "filedown name"
//
// @Success 200 {object} gin.Context
// @Router /filedown/download [post]
func (this *DownloadFuncService) Execute(c *gin.Context) {
// this.FuncService.Execute(c)
this.downloadFile(c)
// c.JSON(200, basedto.ResultSuccessData("下载成功"))
}
func (this *DownloadFuncService) downloadFile(ctx *gin.Context) {
filename := ctx.DefaultQuery("filename", "app.yaml")
//fmt.Sprintf("attachment; filename=%s", filename)对下载的文件重命名
ctx.Writer.Header().Add("Content-Disposition", fmt.Sprintf("attachment; filename=%s", filename))
ctx.Writer.Header().Add("Content-Type", "application/octet-stream")
var root = fileutils.FindRootDir()
ctx.File(root + "/config/app.yml")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ichub/goconfigserver.git
git@gitee.com:ichub/goconfigserver.git
ichub
goconfigserver
goconfigserver
e698a4026a8c

搜索帮助