代码拉取完成,页面将自动刷新
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")
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。